:root {
    --main-color: #FDD22A;
    --sub-color: #F8B62C;
    --bg-color: #F9F9F9;
    --bg-color-02: #F5F5F5;
    --black-color: #333333;
    --sub-txt-color: #555555;
    --sub-txt-color-02: #777777;
    --sub-txt-color-03: #999999;
    --border-color: #D9D9D9;
    --red-color: #e92c2c;
    --green-color: #6FBA4C;
}
* {
  box-sizing: border-box;
  /*
  -webkit-user-select: none;
  -moz-user-select: none;-ms-user-select: none;
  user-select: none;
  */
  -webkit-tap-highlight-color : transparent;
}
*::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
*::-webkit-scrollbar-thumb {
  height: 10%;
  background: var(--main-color);
  border-radius: 10px;
}
*::-webkit-scrollbar-track {
  background: rgba(33, 122, 244, .1);
}
html {
  scroll-behavior : smooth;
}
body {
  font-family: "Pretendard", "Open Sans";
  position: relative;
}

/*Pagination*/
.pagination {
  position: relative;
  margin-top: 48px;
}
.pagination.board {
  display: flex;
  align-items: center;
  justify-content: center;
}
.pagination.mt-60 {
  margin-top: 60px;
}
.pagination.mt-24 {
  margin-top: 24px;
}
.pagination.mt-12 {
  margin-top: 12px;
}
.pagination > a {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.pagination ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.pagination li {
  width: 32px;
  height: 32px;
}
.pagination li a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: var(--black-color);
}
.pagination li a:not(.arrow):hover {
  color: var(--main-color);
  text-decoration: underline;
}
.pagination li.page-on {
  color: var(--main-color) !important;
  text-decoration: underline;
}
.pagination li.page-on a {
  color: var(--main-color) !important;
}
.pagination li a img {
  height: 10px;
  object-fit: cover;
}

/*공통*/

.wrap {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
.sm-wrap {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/*모달*/
/*모달*/
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.15);
  z-index: 102;
  display: none;
}
.modal .modal-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 800px;
  height: auto;
  max-height: calc(100vh - 48px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.modal .modal-box.terms {
    max-width: 1200px;
}
.modal .modal-box .modal-tit-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  background-color: var(--black-color);
}
.modal .modal-box .modal-tit-box span {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
}
.modal .modal-box .modal-tit-box button {
  display: inline-block;
}
.modal .modal-box .modal-tit-box img {
  width: 24px;
  height: 24px;
}
.modal .modal-box .content {
    flex: 1;
  height: auto;
  overflow-y: auto;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.modal .modal-box .content .terms-content {
    font-size: 14px;
    line-height: 1.3;
    color: var(--sub-txt-color-02);
    height: 100%;
    min-height: 300px;
    max-height: 400px;
    overflow: hidden;
    overflow-y: auto;
}
.modal .modal-box .content > label {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    gap: 6px;
}
.modal .modal-box .content > label input {
    width: 16px;
    height: 16px;
    margin: 0;
}
.modal .modal-box .content > label span {
    display: inline-block;
    font-size: 14px;
    font-weight: 400;
    color: var(--black-color);
}
.modal .modal-box .content .item {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.modal .modal-box .content .item input[type="text"] {
    width: 100%;
    height: 50px;
    padding: 0 16px;
    border: 1px solid var(--border-color);
    border-radius: 3px;
}
.modal .modal-box .content .item > p {
    font-weight: 500;
    color: var(--black-color);
    padding-bottom: 12px;
    border-bottom: 1px solid var(--black-color);
}
.modal .modal-box .content .item .n-editor {
    width: 100%;
    min-height: 150px;
    border: 1px solid var(--border-color);
    padding: 16px;
    font-size: 14px;
}
.modal .modal-box .content .item textarea {
    border: 1px solid var(--border-color);
    padding: 16px;
    font-size: 14px;
    height: 150px;
    resize: none;
}

.top-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 0px 5px 5px rgba(0, 0, 0, 0.1);
  background-color: #000;
  cursor: pointer;
  z-index: 98;
}
.top-btn img {
  width: 20px;
  height: 20px;
}

.side-nav {
    width: 100%;
    max-width: 200px;
    position: absolute;
    z-index: 1;
    top: 24px;
    left: -224px;
    border: 1px solid var(--border-color);
    background: var(--bg-color);
    transition: top 0.2s ease;
}
/* fixed 상태 */
.side-nav.is-fixed {
    position: fixed;
    top: 24px;
}
.side-nav .nav-tit {
    width: 100%;
    height: 45px;
    background-color: var(--black-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}
.side-nav .nav-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 8px;
    padding: 8px;
}
.side-nav .nav-grid .item {
    border-radius: 4px;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px;
    background-color: #fff;
}
.side-nav .nav-grid .item p:first-child {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--sub-txt-color-02);
}
.side-nav .nav-grid .item p:first-child::after {
    content: "";
    display: block;
    margin: 8px auto;
    width: 24px;
    height: 1px;
    background-color: var(--border-color);
}
.side-nav .nav-grid .item p:nth-child(2) {
    font-size: 14px;
    font-weight: 400;
    color: var(--green-color);
    line-height: 1.5;
    text-align: center;
}
.side-nav .nav-grid .item p:nth-child(2).lts {
    letter-spacing: -1px;
}
.side-nav .nav-grid .item p:nth-child(2) a {
    display: block;
}
.side-nav .nav-grid .item p:nth-child(2) img {
    height: 24px;
}
.side-nav .nav-grid .item p:nth-child(2) .bank-img {
    height: 18px;
}
.side-nav .nav-grid .item p:nth-child(2) b {
    font-size: 14px;
    font-weight: 400;
    color: var(--sub-txt-color-02);
}

/*header*/

.ham {
    display: none;
}
#ham_btn {
    display: none;
}
#ham_btn + label {
    position: relative;
    display: block;
    width: 36px;
    height: 20px;
    cursor: pointer;
    z-index: 10;
}
#ham_btn + label > span {
    position: absolute;
    display: block;
    width: 100%;
    height: 2px;
    background: var(--black-color);
    border-radius: 5px;
    transition: all 300ms;
}
#ham_btn:checked + label > span:nth-child(1) {
    top: 50%;
    transform: translate(0, -50%);
    transform: rotate(45deg);
}
#ham_btn + label > span:nth-child(2) {
    top: 50%;
    transform: translate(0, -50%);
}
#ham_btn:checked + label > span:nth-child(2) {
    opacity: 0;
}
#ham_btn + label > span:nth-child(3) {
    bottom: 0;
    background-color: var(--main-color) !important;
}
#ham_btn:checked + label > span:nth-child(3) {
    top: 50%;
    transform: translate(0, -50%);
    transform: rotate(-45deg);
}


.header-wrap {
    position: relative;
    z-index: 99;
    width: 100%;
    transition: .1s ease-in-out;
    background-color: #fff;
}
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.container .hd {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}
.container .hd .logo {
    width: 250px;
}
.container .hd .logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.container .hd .search {
    width: 100%;
    max-width: 350px;
    border-bottom: 1px solid var(--black-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 8px;
}
.container .hd .search input {
    width: 100%;
    border: none;
    font-size: 16px;
    font-weight: 400;
    color: var(--black-color);
}
.container .hd .search img {
    width: 16px;
}
.user-btn {
    display: flex;
    align-items: center;
    gap: 8px;
}
.user-btn.mobile {
    display: none;
}
.user-btn a {
    padding: 8px 12px;
    background-color: var(--black-color);
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
}
.user-btn a:hover {
    opacity: .9;
}
.user-btn a img {
    width: 16px;
}

.gnb-area {
    background-color: var(--main-color);
}
.gnb-area .inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 0;
}

.hd-category {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.hd-category button {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 250px;
    padding: 12px 16px;
    background-color: var(--main-color);
    border-radius: 100px;
}
.hd-category button:hover {
    background-color: var(--sub-color);
}
.hd-category button.on {
    background-color: var(--sub-color);
}
.hd-category button > img {
    width: 12px;
    transition: all .2s ease-in-out;
}
.hd-category button.on > img {
    transform: rotate(90deg);
}
.hd-category button .lt {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 16px;
    font-weight: 700;
    color: var(--black-color);
}
.hd-category button .lt img {
    width: 24px;
}
.category-list {
    width: 100%;
    position: absolute;
    left: 0;
    top: calc(100% + 6px);
    background-color: #fff;
    display: none;
    padding: 12px 0;
    border: 1px solid var(--border-color);
}
.hd-category button.on .category-list {
    display: block;
}
.category-list ul {
    position: relative;
}
.category-list ul > li {
    position: relative;
}
.category-list ul > li > a {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
    color: var(--sub-txt-color-02);
    padding: 12px 16px;
}
.category-list ul > li > a:hover {
    background-color: var(--bg-color);
}
.category-list ul > li > a:hover {
    color: var(--black-color);
}
.category-list ul > li > a img {
    width: 16px;
}

/* 2차 카테고리 */
.category-list ul.depth-2 {
    position: absolute;
    top: -6px;
    left: 100%;
    min-width: 220px;
    padding: 12px 0;
    background-color: #fff;
    border: 1px solid var(--border-color);
    display: none;
}
.depth-2 li a {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.depth-2 li a:hover {
    color: var(--black-color);
}
.depth-2 li a span {
    font-size: 14px;
    font-weight: 500;
    color: var(--sub-txt-color-02);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    text-align: left;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.category-list ul > li:hover > .depth-2 {
    display: block;
}
.gnb {
    display: flex;
    gap: 60px;
}
.gnb li a {
    font-size: 16px;
    font-weight: 600;
    color: var(--black-color);
}
.gnb li a:hover {
    opacity: .8;
}
/*footer*/
footer {
    margin-top: 100px;
}
.footer-wrap {
    display: flex;
    flex-direction: column;
}
.footer-wrap .tp {
    display: flex;
    flex-direction: column;
    gap: 36px;
    padding: 36px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}
.footer-wrap .tp .ls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.footer-wrap .tp .ls .f-logo {
    width: 250px;
}
.footer-wrap .tp .ls .f-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.footer-wrap .tp .ls .social {
    display: flex;
    align-items: center;
    gap: 24px;
}
.footer-wrap .tp .ls .social img {
    width: 24px;
}
.footer-wrap .tp .fnb-area {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.fnb {
    display: flex;
}
.fnb > li {
    display: flex;
    align-items: center;
}
.fnb > li:not(:last-child)::after {
    content: "";
    display: inline-block;
    width: 1px;
    height: 12px;
    background-color: var(--border-color);
    margin: 0 16px;
}
.fnb > li > a {
    font-size: 14px;
    font-weight: 400;
    color: var(--black-color);
}
.fnb > li > a:hover {
    color: var(--sub-txt-color-02);
}
.footer-wrap .tp .fnb-area > a {
    color: var(--black-color);
    cursor: pointer;
}
.footer-wrap .bt {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    padding: 24px 0 36px;
}
.footer-wrap .bt .lt {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.footer-wrap .bt .lt .item {
    display: flex;
    gap: 12px;
}
.footer-wrap .bt .lt .item > img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}
.footer-wrap .bt .lt .item span {
    display: block;
    font-size: 16px;
    font-weight: 400;
    color: var(--black-color);
}
.footer-wrap .bt .lt .item span p:nth-child(2) {
    font-size: 14px;
    font-weight: 400;
    color: var(--sub-txt-color-03);
    margin-top: 8px;
}
.footer-wrap .bt .lt .item span.flex {
    display: flex;
    align-items: center;
    gap: 12px;
}
.footer-wrap .bt .lt .item span.flex img {
    width: 120px;
}
.footer-wrap .bt .rt {
    width: 40%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
}
.footer-wrap .bt .rt .rt-info-wrap > p {
    font-size: 16px;
    font-weight: 600;
    color: var(--black-color);
    text-align: right;
    margin-bottom: 24px;
}
.footer-wrap .bt .rt .rt-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px 24px;
}
.footer-wrap .bt .rt .rt-info span {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 300;
    color: var(--sub-txt-color-02);
}
.footer-wrap .bt .rt .box {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 24px;
}
.footer-wrap .bt .rt .box .social {
    display: flex;
    align-items: center;
    gap: 24px;
}
.footer-wrap .bt .rt .box .social a {
    display: inline-block;
}
.footer-wrap .bt .rt .box .social a img {
    width: 24px;
}
.footer-wrap .bt .rt .box .copy {
    font-size: 14px;
    font-weight: 400;
    color: var(--sub-txt-color-02);
}

/*메인*/
.main-banner {
    width: 100%;
    height: auto;
    overflow: hidden;
    position: relative;
}
.main-slider {
    width: 100%;
    aspect-ratio: 5 / 1;
    overflow: hidden;
}
.main-slider .swiper-slide a {
    display: block;
    width: 100%;
    height: 100%;
}
.main-slider .swiper-slide .img-box {
    width: 100%;
    height: 100%;
    position: relative;
}
.main-slider .swiper-slide .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.control {
  width: 100%;
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 20px;
}
.control .navigation {
  display: flex;
  align-items: center;
  gap: 12px;
}
.control .navigation > span {
  cursor: pointer;
}
.control .navigation > span img {
  width: 6px;
}
.control .navigation > button img {
  width: 13px;
}
.pager {
    min-width: 50px;
    display: inline-block;
    width: max-content;
    position: relative;
    top: unset;
    left: unset;
    bottom: unset;
    font-size: 14px;
    color: #fff;
}
.swiper-pagination-total {
  color: #fff;
}
.swiper-progress-bar {
  position: relative;
  width: 100px;
  display: block;
  z-index: 1;
  height: 3px;
  .slide_progress-bar {
    position: absolute;
    height: 3px;
    background: rgba(255, 255, 255, 0.5);
    width: auto;
    clear: both;
    opacity: 0;
    left: 0;
    right: 0;
    &:after {
      position: absolute;
      top: 0;
      left: 0;
      background: var(--main-color);
      height: 100%;
      width: 0;
      content: "";
      transition: 0.1s width linear;
    }
  }
  &.active {
    .slide_progress-bar {
      opacity: 1;
    }
  }
  &.animate {
    .slide_progress-bar {
      &:after {
        transition: width linear;
        transition-delay: unset;
        width: 100%;
        transition-duration: 4s;
      }
    }
  }
}
.swiper-button-lock {
  display: block !important;
}


.do-area {
    width: 100%;
    height: calc(100dvh - 80px);
    overflow: hidden;
    position: relative;
}
.do-area .bg-img {
    width: 100%;
    height: 100%;
    position: relative;
}
.do-area .bg-img::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  display: block;
  background-color: rgba(0, 0, 0, 0.3);
}
 .bg-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}
.bg-img img.active {
    opacity: 1;
    z-index: 2;
}
.grid-box {
    width: 100%;
    height: 100%;
    position: relative;
}
.do-grid {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.do-grid .item {
    display: flex;
    justify-content: center;
    padding: 350px 0 0;
    transition: .2s ease-in-out;
}
.do-grid .item:hover {
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    transition: .2s ease-in-out;
}
.do-grid .item:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}
.do-grid .item .txt {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 0 24px;
}
.do-grid .item .txt p:first-child {
    font-size: 38px;
    font-weight: 600;
    color: #fff;
    line-height: 1.3;
    text-align: center;
    margin-bottom: 12px;
}
.do-grid .item .txt p:nth-child(2) {
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    line-height: 1.3;
    text-align: center;
    word-break: keep-all;
}
.do-grid .item .txt p:nth-child(3) {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    line-height: 1.5;
    text-align: center;
    word-break: keep-all;
}
.do-area .wc-tit {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding-top: 100px;
}
.do-area .wc-tit p:first-child {
    font-size: 58px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 5px;
}
.do-area .wc-tit p:nth-child(2) {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    text-align: center;
    line-height: 1.3;
}


.main-contact {
    padding-top: 150px;
    display: flex;
    gap: 48px;
}
.main-contact .lt {
    flex: 1;
    order: 1;
}

.main-contact .lt .tit {
    font-size: 36px;
    font-weight: 600;
    color: var(--black-color);
    letter-spacing: 12px;
    position: relative;
    padding-bottom: 24px;
    margin-bottom: 36px;
}
.main-contact .lt .tit.gap-none {
    letter-spacing: 2px;
}
.main-contact .lt .tit::after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    width: 100px;
    height: 3px;
    background-color: var(--main-color);
}
.main-contact .lt .greetings {
    font-size: 18px;
    font-weight: 400;
    color: var(--sub-txt-color);
    line-height: 1.5;
    word-break: keep-all;
    margin-bottom: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 36px;
}
.contact-info .item {
    display: flex;
    align-items: center;
    gap: 16px;
}
.contact-info .item img {
    width: 24px;  
}
.contact-info .item span:nth-child(2) {
    font-size: 18px;
    font-weight: 600;
    color: var(--sub-txt-color);
}
.basic-btn {
    width: 250px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
    border: 1px solid var(--black-color);
    font-size: 14px;
    font-weight: 500;
    color: var(--black-color);
}
.basic-btn:hover {
    background-color: rgba(0, 0, 0, 0.05);
}
.basic-btn.full {
    width: 100%;
}


.main-contact .map-area {
    flex: 1;
    order: 2;
}
.main-contact .map-area .root_daum_roughmap {
    width: 100%;
    height: 100%;
}
.root_daum_roughmap .wrap_map {
    height: 100% !important;
    border-bottom: 1px solid var(--border-color);
}

/*페이지*/
.page-area {
    padding-top: 48px;
    position: relative;
}
.basic-page {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 150px;
    padding-top: 48px;
}
.page-tit {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 48px;
}
.flex-tit .page-tit {
    margin-bottom: 0;
}
.page-tit .tit-lg {
    font-size: 36px;
    font-weight: 700;
    color: var(--black-color);
    letter-spacing: 12px;
    display: flex;
    align-items: flex-end;
}
.page-tit .tit-lg::after {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 100%;
    background-color: var(--main-color);
    display: inline-block;
    margin-bottom: 8px;
}
.page-tit .tit-sm {
    font-size: 16px;
    font-weight: 400;
    color: var(--sub-txt-color);
    line-height: 1.3;
}
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px 16px;
}
.product-grid .item {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
    position: relative;
}
.product-grid .item.empty {
    width: 100%;
    padding: 48px 0;
    text-align: center;
    grid-column: span 4;
    border-bottom: none;
    font-size: 16px;
    font-weight: 400;
    color: var(--black-color);
}
.product-grid .item.empty::after {
    display: none;
}
.product-grid .item::after {
    content: "";
    width: 0;
    height: 1px;
    background-color: var(--green-color);
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 2;
    transition: .2s ease-in-out;
}
.product-grid .item:hover::after {
    width: 100%;
    transition: .2s ease-in-out;
}

.product-grid .item .img-box {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    display: block;
    border: 1px solid var(--border-color);
    padding: 16px;
}
.product-grid .item .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    scale: 1;
    transition: .2s ease-in-out;
}
.product-grid .item:hover .img-box img {
    scale: 1.1;
    transition: .2s ease-in-out;
}
.product-grid .item .txt {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.product-grid .item .txt p.tit {
    font-size: 18px;
    font-weight: 600;
    color: var(--black-color);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    text-align: left;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.product-grid .item .txt p.size {
    font-size: 18px;
    font-weight: 700;
    color: var(--green-color);
}
.product-grid .item .txt p.price {
    font-size: 24px;
    font-weight: 700;
    color: var(--black-color);
    margin-top: 12px;
}
.product-grid .item .txt p.cate {
    font-size: 14px;
    font-weight: 600;
    color: var(--green-color);
}


.contact-area {
    display: flex;
    align-items: flex-start;
    gap: 36px;
}
.contact-area .bg-info {
    flex: 1;
    order: 1;
    position: sticky;
    top: 24px;
    left: 0;
}
.contact-area .bg-info .img-box {
    width: 100%;
    height: auto;
    position: relative;
}
.contact-area .bg-info .img-box::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    background: linear-gradient(180deg,rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.9) 100%);
}
.contact-area .bg-info .img-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.contact-area .bg-info .info {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 8px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 24px;
}
.contact-area .bg-info .info .item {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 8px;
    border-radius: 8px;
}
.contact-area .bg-info .info .item span:first-child {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.1);
    display: inline-block;
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact-area .bg-info .info .item span:first-child img {
    width: 32px;
}
.contact-area .bg-info .info .item span:nth-child(2) {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
}


.form-area {
    flex: 1;
    order: 2;
}
.form-area .expl-tit {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
    padding-bottom: 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
}
.form-area .expl-tit span:first-child {
    font-size: 24px;
    font-weight: 600;
    color: var(--black-color);
}
.form-area .expl-tit span:nth-child(2) {
    font-size: 14px;
    font-weight: 500;
    color: var(--sub-txt-color);
    display: flex;
    align-items: center;
    gap: 4px;
}
.form-area .expl-tit span:nth-child(2)::before {
    content: "*";
    color: #EA2929;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 8px;
    margin-bottom: 48px;
}
.form-grid.mb-0 {
    margin-bottom: 0;
}
.find-box {
    display: flex;
    justify-content: flex-end;
    gap: 6px;
    font-size: 14px;
    color: var(--sub-txt-color-03);
}
.form-grid .input-box {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.form-grid .input-box > p {
    font-size: 14px;
    font-weight: 500;
    color: var(--sub-txt-color);
}
.form-grid .input-box > p::after {
    content: "*";
    color: #EA2929;
    margin-left: 4px;
}
.form-grid .input-box > p.ns::after {
    display: none;
}
.form-grid .input-box input {
    width: 100%;
    height: 55px;
    line-height: 55px;
    padding: 0 16px;
    background-color: var(--bg-color-02);
    border: none;
    border-radius: 3px;
}
.form-grid .input-box textarea {
    width: 100%;
    height: 150px;
    padding: 16px;
    background-color: var(--bg-color-02);
    border: none;
}
.form-grid .input-box.col-span-2 {
    grid-column: span 2;
}
.form-grid .input-box .flex-input {
    display: flex;
    align-items: center;
    gap: 16px;
    background-color: var(--bg-color-02);
    padding: 12px 16px 16px;
}
.form-grid .input-box .flex-input > span {
    font-size: 14px;
    font-weight: 400;
    color: var(--sub-txt-color);
    white-space: nowrap;
}
.form-grid .input-box .flex-input input[type="text"] {
    background-color: #fff;
}
.form-grid .input-box input.date-input {
    max-width: 150px !important;
}


.terms-wrap {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.terms-wrap .chk-area {
    background-color: var(--bg-color-02);
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 36px;
}
.terms-wrap label {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--black-color);
    cursor: pointer;
}
.terms-wrap label input[type="radio"] {
    width: 16px !important;
    height: 16px !important;
    margin: 0 !important;
    padding: 0 !important;
}
.terms-wrap .terms-area {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.terms-wrap .terms-area button {
    font-size: 14px;
    font-weight: 500;
    color: var(--sub-txt-color);
    text-decoration: underline;
}
.terms-wrap .terms-area b {
    color: red;
}



.search-box {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
}
.search-box select {
    min-width: 200px;
    height: 60px;
    border: none;
    border-bottom: 1px solid var(--black-color);
    padding: 0;
    font-size: 20px;
    font-weight: 600;
    color: var(--black-color);
}
.search-box .input-area {
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border: none;
    border-bottom: 1px solid var(--black-color);
}
.search-box .input-area input {
    width: 100%;
    height: 100%;
    padding: 0 16px;
    border: none;
    font-size: 20px;
    font-weight: 600;
    color: var(--black-color);
}
.search-box .input-area input::placeholder {
    color: var(--black-color);
}
.search-box .input-area img {
    width: 24px;
}

.flex-tit {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 60px;
}
.flex-tit form {
    width: 50%;
}
.social-link {
    display: flex;
    align-items: center;
    gap: 24px;
}
.social-link img {
    width: 36px;
}

.mobile-call {
    display: none;
}
.mobile-call a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
    font-size: 20px;
    font-weight: 600;
    color: var(--sub-txt-color);
}
.mobile-call img {
    width: 24px;
}


/*datepicker*/
.i_datepicker input{cursor: pointer;}
.i_datepicker img{position: absolute; right: 15px; top: 50%; transform: translateY(-50%); width: 16px; height: 16px; background: url(../img/ico_datepicker.svg) no-repeat center/cover;}
#ui-datepicker-div{z-index: 9 !important;}
.ui-widget-header { border: 0px solid #dddddd; background: #fff; }
.ui-datepicker-calendar>thead>tr>th { font-size: 14px !important; }
.ui-datepicker .ui-datepicker-header { position: relative; padding: 10px 0; }
.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active { border: 0px solid #c5c5c5; background-color: transparent; font-weight: normal; color: #454545; text-align: center; }
.ui-datepicker .ui-datepicker-title { margin: 0 0em; line-height: 16px; text-align: center; font-size: 14px; padding: 0px; font-weight: bold; }
.ui-datepicker { display: none; background-color: #fff; border-radius: 4px; margin-top: 10px; margin-left: 0px; margin-right: 0px; padding: 20px; padding-bottom: 10px; width: 300px; box-shadow: 10px 10px 40px rgba(0, 0, 0, 0.1); }
.ui-widget.ui-widget-content { border: 1px solid #eee; }
#datepicker:focus>.ui-datepicker { display: block; }
.ui-datepicker-prev,
.ui-datepicker-next { cursor: pointer; }
.ui-datepicker-next { float: right; }
.ui-state-disabled { cursor: auto; color: hsla(0, 0%, 80%, 1); }
.ui-datepicker-title { text-align: center; padding: 10px; font-weight: 100; font-size: 20px; }
.ui-datepicker-calendar { width: 100%; }
.ui-datepicker-calendar>thead>tr>th { padding: 5px; font-size: 20px; font-weight: 400; }
.ui-datepicker-calendar>tbody>tr>td>a { color: #000; font-size: 12px !important; font-weight: bold !important; text-decoration: none;}
.ui-datepicker-calendar>tbody>tr>.ui-state-disabled:hover { cursor: auto; background-color: #fff; }
.ui-datepicker-calendar>tbody>tr>td { border-radius: 100%; width: 44px; height: 30px; cursor: pointer; padding: 5px; font-weight: 100; text-align: center; font-size: 12px; }
.ui-datepicker-calendar>tbody>tr>td:hover { background-color: transparent; opacity: 0.6; }
.ui-state-hover,
.ui-widget-content .ui-state-hover,
.ui-widget-header .ui-state-hover,
.ui-state-focus,
.ui-widget-content .ui-state-focus,
.ui-widget-header .ui-state-focus,
.ui-button:hover,
.ui-button:focus { border: 0px solid #cccccc; background-color: transparent; font-weight: normal; color: #2b2b2b; }
/* .ui-widget-header .ui-icon { background-image: url('./btns.png'); }  */
/* .ui-icon-circle-triangle-e { background-position: -20px 0px; background-size: 36px; }
.ui-icon-circle-triangle-w { background-position: -0px -0px; background-size: 36px; }  */
.ui-datepicker-calendar>tbody>tr>td:first-child a { color: red !important; }
.ui-datepicker-calendar>tbody>tr>td:last-child a { color: #0099ff !important; }
.ui-datepicker-calendar>thead>tr>th:first-child { color: red !important; }
.ui-datepicker-calendar>thead>tr>th:last-child { color: #0099ff !important; }
.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight { border: 0px; background: #f1f1f1; border-radius: 50%; padding-top: 7px; padding-bottom: 8px; }
.inp { padding: 10px 10px; background-color: #f1f1f1; border-radius: 4px; border: 0px; }




.filter {
    flex: 1;
    margin-bottom: 48px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.filter .category-01 {
    padding-top: 12px;
    border-top: 2px solid var(--black-color);
}
.filter .category-02 {
    padding-top: 12px;
    border-top: 2px solid var(--black-color);
}
.filter p {
    font-size: 20px;
    font-weight: 400;
    color: var(--black-color);
    margin-bottom: 16px;
}
.filter .filter-box {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 12px;
}
.filter .filter-box.border {
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
}
.filter .filter-box a {
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 12px;
    font-size: 14px;
    font-weight: 500;
    color: #999;
}
.filter .filter-box a.on {
    font-weight: 600;
    color: var(--black-color);
}
.filter .filter-box a.on::before {
    content: "";
    display: inline-block;
    width: 4px;
    height: 4px;
    border-radius: 100%;
    background-color: var(--black-color);
    margin-right: 6px;
}
.filter .filter-box a:hover {
    border-bottom: 1px solid var(--black-color);
    color: var(--black-color);
}
.main-box {
    display: flex;
    justify-content: space-between;
    gap: 48px;
}
.main-box .main-product-box {
    width: 100%;
    max-width: 1150px;
}

.basic-tit {
    width: 100%;
    display: flex;
    justify-content: center;
}
.basic-tit .tit-lg {
    width: 100%;
    max-width: 400px;
    font-size: 36px;
    font-weight: 700;
    color: var(--black-color);
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 48px;
    text-align: center;
}
.basic-tit .tit-lg.long {
    font-size: 24px;
    max-width: 600px;
}
.sub-tit {
    font-size: 36px;
    font-weight: 700;
    color: var(--black-color);
    border-left: 3px solid var(--sub-color);
    padding-left: 16px;
    margin-bottom: 36px;
}
.about-01 {
    text-align: center;
}
.about-02 {
    padding-bottom: 48px;
    border-bottom: 1px solid var(--border-color);
}
.about-02 .tp {
    background-color: var(--bg-color);
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    display: flex;
    align-items: center;
}
.about-02 .tp .txt {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding: 24px 48px;
    font-size: 36px;
    font-weight: 600;
    color: var(--black-color);
    line-height: 1.2;
}
.about-02 .tp .txt img {
    height: 70px;
    object-fit: contain;
}
.about-02 .tp .img-box {
    width: 100%;
    height: auto;
    overflow: hidden;
}
.about-02 .tp .img-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.about-02 .bt {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    gap: 36px;
}
.about-02 .bt p {
    font-size: 20px;
    font-weight: 300;
    color: var(--sub-txt-color);
    line-height: 1.3;
}
.about-02 .bt p:first-child {
    font-size: 28px;
    font-weight: 600;
    color: var(--black-color);
}
.about-02 .bt .sign {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
    font-size: 20px;
    font-weight: 600;
    color: var(--black-color);
}
.about-03 {
    text-align: center;
}
.list-total {
    font-size: 16px;
    font-weight: 300;
    color: var(--black-color);
    margin-bottom: 16px;
}
.list-total b {
    font-weight: 700;
    color: var(--sub-color);
}
.customer-list {
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}
.customer-list li {
    position: relative;
    display: flex;
    align-items: center;
    gap: 36px;
    border-bottom: 1px solid var(--border-color);
    padding: 24px 0;
    cursor: pointer;
}
.customer-list li::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background-color: var(--main-color);
    transition: all .2s ease-in-out;
}
.customer-list li:hover::after {
    width: 100%;
}
.customer-list li:last-child {
    border-bottom: none;
}
.customer-list li.empty {
    justify-content: center;
    font-size: 20px;
    font-weight: 400;
    color: #fff;
}
.customer-list li .num {
    font-weight: 700;
    color: var(--sub-color);
    min-width: 50px;
    text-align: center;
}
.customer-list li .tit {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 6px;
}
.customer-list li .tit span {
    font-weight: 400;
    color: var(--black-color);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    text-align: left;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.customer-list li .tit img {
    width: 20px;
}
.customer-list li .writer {
    min-width: 120px;
    width: 120px;
    font-weight: 400;
    color: var(--sub-txt-color-02);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    text-align: left;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.customer-list li .date {
    min-width: 95px;
    width: 95px;
    font-weight: 400;
    color: var(--sub-txt-color-02);
}
.customer-list li .reply span {
    font-size: 14px;
    font-weight: 300;
    color: #fff;
    width: 100px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.customer-list li .reply span.no {
    background-color: var(--black-color);
}
.customer-list li .reply span.yes {
    background-color: #04A452;
}
/*Pagination*/
.pagination {
  position: relative;
  margin-top: 16px;
}
.pagination.mt-0 {
    margin-top: 0;
}
.pagination.mt-60 {
  margin-top: 60px;
}
.pagination.mt-24 {
  margin-top: 24px;
}
.pagination.mt-12 {
  margin-top: 12px;
}
.pagination > a {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.pagination ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.pagination li {
  width: 28px;
  height: 28px;
}
.pagination li a {
  width: 100%;
  height: 100%;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  color: var(--sub-txt-color-02);
}
.pagination li a:not(.arrow):hover {
    color: var(--sub-color);
    text-decoration: underline;
}
.pagination li.on {
    color: var(--sub-color);
    text-decoration: underline;
}
.pagination li.on a {
    color: var(--sub-color);
    text-decoration: underline;
}
.pagination li a img {
  height: 10px;
  object-fit: cover;
}
.customer-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 102;
  display: none;
}
.customer-modal .modal-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--black-color);
  box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 600px;
  padding: 24px;
  border-radius: 12px;
  display: flex;
  gap: 16px;
}
.customer-modal .modal-box input[type="password"] {
    width: 100%;
    height: 60px;
    padding: 16px 0;
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid var(--border-color);
}
.customer-modal .modal-box input[type="password"]:focus {
    outline: none;
    border-bottom: 1px solid var(--main-color);
}
.view-tit-box {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
}
.view-tit-box .tit {
    font-size: 24px;
    font-weight: 500;
    color: var(--black-color);
    line-height: 1.3;
}
.view-tit-box .info {
    display: flex;
    align-items: center;
}
.view-tit-box .info span {
    display: flex;
    align-items: center;
    font-size: 16px;
    color: var(--sub-txt-color-02);
}
.view-tit-box .info span b {
    font-weight: 500;
    margin-right: 12px;
}
.view-tit-box .info span b.yes {
    color: #04A452;
}
.view-tit-box .info span:not(:last-child)::after {
    content: "";
    display: inline-block;
    width: 1px;
    height: 14px;
    background-color: var(--border-color);
    margin: 0 12px;
}
.file-box {
  padding: 24px 0;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 24px;
}
.file-box a {
  display: flex;
  align-items: center;
  gap: 12px;
}
.file-box a img {
  height: 18px;
}
.file-box a span {
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  color: var(--sub-txt-color-03);
}
.file-box a:hover span {
  text-decoration: underline;
}
.file-box a.empty {
  font-weight: 500;
}
.editor-area {
    padding: 96px 0;
    min-height: 250px;
    line-height: 1.5;
    color: var(--black-color) !important;
}
.reply-box {
    border-radius: 12px;
    padding: 36px 24px;
    background-color: var(--bg-color);
    border: 1px solid var(--border-color);
}
.reply-box .tp {
    display: flex;
    align-items: center;
    padding-bottom: 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
}
.reply-box .tp span {
    display: flex;
    align-items: center;
    font-size: 16px;
    color: var(--black-color);
}
.reply-box .tp span b {
    font-weight: 500;
}
.reply-box .tp span b.yes {
    color: #04A452;
}
.reply-box .tp span b.no {
    color: var(--sub-txt-color-03);
}
.reply-box .tp span:not(:last-child)::after {
    content: "";
    display: inline-block;
    width: 1px;
    height: 14px;
    background-color: var(--border-color);
    margin: 0 12px;
}
.reply-box .bt span {
    font-weight: 400;
    color: var(--black-color);
    line-height: 1.5;
}
.btn {
    width: 200px;
    min-width: 200px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    border: 1px solid var(--border-color);
    border-radius: 3px;
    display: flex;
}
.btn img {
    width: 20px;
}
.btn.kakao-btn {
    background-color: #FED929;
    color: var(--black-color);
    border: none;
}
.btn.solid-btn {
    background-color: #1A1A1A;
}
.btn.solid-btn.xs-btn {
    width: 100%;
    min-width: unset;
    height: 50px;
    font-size: 14px;
}
.btn.kakao-btn.xs-btn {
    width: 100%;
    min-width: unset;
    height: 50px;
    font-size: 14px;
}
.btn.solid-btn.xs-btn.short {
    width: 120px;
    min-width: 120px;
}
.btn.solid-btn:hover {
    opacity: .9;
}
.btn.basic-btn {
    background-color: transparent;
    color: var(--black-color);
}
.btn.basic-btn.xs-btn {
    width: 100%;
    min-width: unset;
    height: 50px;
    font-size: 14px;
}
.btn.basic-btn.xs-btn.short {
    width: 120px;
    min-width: 120px;
}
.btn.basic-btn:hover {
    background-color: var(--bg-color);
}
.btn-wrap {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    margin-top: 48px;
}
.btn-wrap-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}
.btn-wrap-grid.solid {
    grid-template-columns: repeat(1, 1fr);
}
.btn-wrap.mt-0 {
    margin-top: 0;
}
.btn-wrap.mt-24 {
    margin-top: 24px;
}
.btn-wrap.center {
    justify-content: center;
}
.btn-wrap.mt-24 {
    margin-top: 24px;
}
.form-area .form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 8px;
}
.form-area .input-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.form-area .input-grid.col-span-2 {
    grid-column: 1 / -1;
}
.form-area .input-grid > p {
    font-size: 16px;
    font-weight: 700;
    color: var(--black-color);
}
.form-area .input-grid > p b {
    font-weight: 700;
    color: var(--sub-color);
}
.form-area .input-grid input[type="text"],
.form-area .input-grid input[type="password"],
.form-area .input-grid input[type="email"],
.form-area .input-grid input[type="number"],
.form-area .input-grid input[type="file"],
.form-area .input-grid .input-file {
    width: 100%;
    background-color: transparent;
    height: 60px;
    padding: 0;
    border: none;
    border-bottom: 1px solid var(--border-color);
    font-size: 16px;
    font-weight: 400;
    color: var(--black-color);
}
.form-area .input-grid textarea {
    padding: 16px;
    height: 200px;
    background-color: transparent;
    font-size: 16px;
    font-weight: 400;
    color: var(--black-color);
    line-height: 1.3;
    border: 1px solid var(--border-color);
}
.form-area .input-grid input[type="text"]:focus,
.form-area .input-grid input[type="password"]:focus,
.form-area .input-grid input[type="email"]:focus,
.form-area .input-grid input[type="number"]:focus,
.form-area .input-grid input[type="file"]:focus,
.form-area .input-grid .input-file {
    outline: none;
    border-bottom: 1px solid var(--sub-color);
}
.form-area .input-grid textarea:focus {
    outline: none;
    border: 1px solid var(--main-color);
}
.form-area .input-grid .form-expl {
    font-size: 14px;
    font-weight: 300;
    color: var(--main-color);
    line-height: 1.3;
}
.file-upload {
    width: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
}
.file-upload .file-btn {
    cursor: pointer;
}
.file-upload .file-btn:hover {
    opacity: .8;
}
.customer-expl {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 24px;
    border-radius: 12px;
    background-color: var(--bg-color);
    font-size: 24px;
    font-weight: 300;
    color: var(--black-color);
    margin-bottom: 100px;
    border: 1px solid var(--border-color);
}
.customer-expl img {
    width: 24px;
}

.notice-list {
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}
.notice-list li {
    position: relative;
    display: flex;
    align-items: center;
    gap: 48px;
    border-bottom: 1px solid var(--border-color);
    padding: 24px 0;
    cursor: pointer;
}
.notice-list li::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background-color: var(--main-color);
    transition: all .2s ease-in-out;
}
.notice-list li a {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    gap: 48px;
    cursor: pointer;
}
.notice-list li:hover::after {
    width: 100%;
}
.notice-list li:last-child {
    border-bottom: none;
}
.notice-list li.empty {
    justify-content: center;
    font-size: 20px;
    font-weight: 400;
    color: #fff;
}
.notice-list li .num {
    font-weight: 700;
    color: var(--sub-color);
    min-width: 50px;
    text-align: center;
}
.notice-list li .tit {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 6px;
}
.notice-list li .tit span {
    font-weight: 400;
    color: var(--black-color);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    text-align: left;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.notice-list li .tit img {
    width: 20px;
}
.notice-list li .writer {
    min-width: 120px;
    width: 120px;
    font-weight: 400;
    color: var(--sub-txt-color-02);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    text-align: left;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.notice-list li .date {
    min-width: 80px;
    width: 80px;
    font-weight: 400;
    color: var(--sub-txt-color-02);
}
.notice-list li .reply span {
    font-size: 16px;
    font-weight: 300;
    color: #fff;
    width: 150px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.notice-list li .reply span.no {
    background-color: var(--black-color);
}
.notice-list li .reply span.yes {
    background-color: #04A452;
}
.other-area {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}
.other-area a {
    padding: 24px 0;
    display: flex;
    gap: 48px;
}
.other-area a:first-child {
    border-bottom: 1px solid var(--border-color);
}
.other-area a .other-front {
    display: inline-block;
    color: var(--sub-color);
}
.other-area a .other-tit {
    color: var(--black-color);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    text-align: left;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.other-area a:hover .other-tit {
    color: var(--sub-txt-color-02);
}

.user-box {
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 0 auto;
}
.user-box .delete-expl {
    background-color: var(--bg-color);
    border-radius: 3px;
    padding: 16px;
    font-size: 14px;
    font-weight: 400;
    color: var(--sub-txt-color-02);
    line-height: 1.3;
}
.user-box .hd {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    margin-bottom: 24px;
}
.user-box .hd img {
    width: 200px;
}
.user-box .hd .txt {
    font-size: 16px;
    font-weight: 500;
    color: var(--black-color);
    text-align: center;
    line-height: 1.3;
    word-break: keep-all;
}
.input-box {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 12px;
}
.input-box .box {
    display: flex;
    align-items: center;
    gap: 6px;
}
.input-box .flex-input {
    display: flex;
    gap: 8px;
}
.input-box .box button {
   width: 120px;
   min-width: 120px;
}
.input-box p {
    font-size: 13px;
    font-weight: 400;
    color: var(--black-color);
}
.input-box p .rc-txt {
    color: var(--red-color)
}
.input-box p::after {
    content: "*";
    font-size: 14px;
    font-weight: 700;
    color: var(--sub-color);
    margin-left: 4px;
}
.input-box p.ns::after {
    display: none;
}
.input-box input[type="text"], .input-box input[type="password"], .input-box input[type="email"] {
    width: 100%;
    height: 50px;
    line-height: 50px;
    padding: 0 12px;
    font-size: 14px;
    font-weight: 400;
    color: var(--black-color);
    border: 1px solid var(--border-color);
    border-radius: 3px;
}
.input-box input[type="text"]:focus, .input-box input[type="password"]:focus, .input-box input[type="email"]:focus {
    border: 1px solid var(--main-color);
}
.input-box input:read-only {
    background-color: #F5F5F5;
}

.find-link {
    text-align: right;
    font-size: 14px;
    font-weight: 400;
    color: var(--sub-txt-color-03);
    margin-bottom: 12px;
}
.register-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 24px 0 36px;
}
.register-btn span {
    display: inline-block;
    font-size: 14px;
    color: var(--sub-txt-color-02);
}
.register-btn a {
    display: inline-block;
    font-size: 14px;
    color: var(--black-color);
    text-decoration: underline;
}
.user-expl {
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding-bottom: 12px;
    margin-top: 24px;
}
.user-expl span:first-child {
    display: inline-block;
    font-weight: 400;
    color: var(--black-color);
}
.user-expl span:nth-child(2) {
    font-size: 14px;
    font-weight: 400;
    color: var(--sub-txt-color-03);
    display: inline-block;
}
.user-expl span:nth-child(2)::before {
    content: "*";
    margin-right: 6px;
    color: var(--sub-color);
}

.agree-box {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 6px;
}
.agree-box .agree-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.agree-box .agree-item label {
    font-size: 14px;
    color: var(--sub-txt-color-02);
    display: flex;
    align-items: center;
    cursor: pointer;
}
.agree-box .agree-item label input {
    margin: 0;
    width: 14px;
    height: 14px;
    margin-right: 6px;
    cursor: pointer;
}
.agree-box .agree-item label span {
    color: red;
}
.agree-box .agree-item a {
    font-size: 14px;
    font-weight: 400;
    color: var(--sub-txt-color-01);
    text-decoration: underline;
    cursor: pointer;
}

.user-tab-menu {
    border-bottom: 1px solid var(--border-color);
    display: flex;
    margin-top: 24px;
}
.user-tab-menu a {
    width: 100%;
    display: inline-block;
    font-size: 16px;
    font-weight: 400;
    color: var(--sub-txt-color-02);
    text-align: center;
    padding-bottom: 12px;
}
.user-tab-menu a.on {
    color: var(--black-color);
    border-bottom: 2px solid var(--black-color);
    padding-bottom: 10px;
}
.mypage-tab {
    display: flex;
    margin-bottom: 60px;
    position: sticky;
    top: 0;
    left: 0;
}
.mypage-tab button, .mypage-tab a {
    width: 100%;
    height: 60px;
    line-height: 60px;
    text-align: center;
    background-color: var(--bg-color);
    margin-left: -1px;
    border: 1px solid var(--border-color);
    font-weight: 400;
    color: var(--sub-txt-color-03);
}
.mypage-tab button.on, .mypage-tab a.on {
    background-color: #fff;
    color: var(--black-color);
    border-bottom: 3px solid var(--black-color);
} 
.mp-file {
    background-color: var(--black-color);
    padding: 6px 8px;
    border-radius: 3px;
    font-size: 14px;
    font-weight: 400;
    color: #fff;
}
.mp-file:hover {
    background-color: rgba(0, 0, 0, 0.7);
}
.mp-file a {
    display: block;
    width: 100%;
}
.order-table table {
    width: 100%;
    border-top: 2px solid var(--black-color) !important;
    border-bottom: 1px solid var(--border-color);
    border-collapse: collapse !important;
}
.order-table table th {
    vertical-align: middle;
    background-color: var(--bg-color);
    padding: 16px;
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
    color: var(--black-color);
    line-height: 1.3;
}
.order-table table th .order-type {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    position: relative;
    cursor: pointer;
}
.order-table table th .order-type img {
    width: 16px;
}
.order-table table input[type="checkbox"] {
    cursor: pointer;
    width: 16px;
    height: 16px;
    margin: 0;
}
.order-table table td {
    vertical-align: middle;
    text-align: center;
    padding: 16px;
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
    color: var(--sub-txt-color-02);
    line-height: 1.3;
}
.order-table table td a {
    font-weight: 500;
    color: var(--black-color);
}
.order-table table td a:hover {
    text-decoration: underline;
}
.badge {
    display: inline-block;
    border-radius: 3px;
    padding: 4px 5px;
    font-size: 12px;
    font-weight: 500;
}
.badge.status-01 {
    color: #2D6712;
    background-color: #B0D29F;
}
.badge.status-02 {
    color: #fff;
    background-color: #6DA752;
}
.badge.status-03 {
    color: #fff;
    background-color: #689CD6;
}
.badge.status-04 {
    color: #0F57A7;
    background-color: #90BCEB;
}
.badge.status-05 {
    color: #F2095A;
    background-color: #FFD9D8;
}
.badge.status-06 {
    color: #fff;
    background-color: #F00B5D;
}
.terms-item {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 48px;
}
.terms-item > p {
    font-size: 16px;
    font-weight: 500;
    color: var(--black-color);
    padding-bottom: 12px;
    border-bottom: 1px solid var(--black-color);
    margin-bottom: 12px;
}
.terms-item .content {
    padding: 24px;
    line-height: 1.3;
    background-color: var(--bg-color);
    border-radius: 3px;
    height: 150px;
    overflow: hidden;
    overflow-y: auto;
    font-size: 14px;
    color: var(--sub-txt-color-02);
}
.terms-item label {
    display: flex;
    align-items: center;
    cursor: pointer;
    gap: 6px;
}
.terms-item label input {
    width: 16px;
    height: 16px;
    margin: 0;
}
.terms-item label span {
    display: inline-block;
    font-size: 14px;
    font-weight: 400;
    color: var(--black-color);
}
.order-table table {
    width: 100%;
    border-top: 2px solid var(--black-color) !important;
    border-bottom: 1px solid var(--border-color);
    border-collapse: collapse !important;
}
.order-table table th {
    vertical-align: middle;
    background-color: var(--bg-color);
    padding: 16px;
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
    color: var(--black-color);
    line-height: 1.3;
}
.order-table table th .order-type {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    position: relative;
    cursor: pointer;
}
.order-table table th .order-type img {
    width: 16px;
}
.order-table table input[type="checkbox"] {
    cursor: pointer;
    width: 16px;
    height: 16px;
    margin: 0;
}
.order-table table td {
    vertical-align: middle;
    text-align: center;
    padding: 16px;
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
    color: var(--sub-txt-color-02);
    line-height: 1.3;
}
.order-table table td a {
    font-weight: 500;
    color: var(--black-color);
}
.order-table table td a:hover {
    text-decoration: underline;
}
.ballon {
    display: none;
    position: absolute;
    right: 0;
    z-index: 2;
    bottom: calc(100% + 12px);
    background: rgba(0, 0, 0, 0.8);
    font-size: 12px;
    font-weight: 400;
    color: #fff;
    line-height: 1.3;
    text-align: left;
    border-radius: 4px;
    padding: 12px;
    white-space: nowrap;
}
.ballon::after {
    border-top: 6px solid rgba(0, 0, 0, 0.8);
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 0px solid transparent;
    content: "";
    position: absolute;
    bottom: -5px;
    right: 48px;
}
.ballon .ballon-item {
    display: flex;
    gap: 16px;
}
.ballon .ballon-item:not(:last-child) {
    margin-bottom: 6px;
}
.ballon .ballon-item span:first-child {
    font-weight: 500;
}
.order-table table th .order-type:hover .ballon {
    display: block;
}

.order-box {
    display: flex;
    align-items: center;
    gap: 12px;
}
.order-box .img-box {
    width: 50px;
    height: 50px;
    min-width: 50px;
    aspect-ratio: 1 / 1;
}
.order-box .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.order-box .txt {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.order-box .txt p {
    font-size: 14px;
    font-weight: 500;
    color: var(--black-color);
    line-height: 1.3;
    text-align: left;
}
.order-box .txt .option {
    display: flex;
    align-items: center;
    gap: 4px;
}
.order-box .txt .option span:first-child {
    border-radius: 3px;
    padding: 6px;
    font-size: 12px;
    font-weight: 400;
    color: #fff;
    background-color: var(--black-color);
    display: inline-block;
    border-radius: 3px;
}
.order-box .txt .option span:nth-child(2) {
    font-size: 14px;
    font-weight: 500;
    color: var(--sub-txt-color-02);
}

.order-dashboard {
    display: flex;
    gap: 48px;
    margin-top: 48px;
}
.order-dashboard .lt {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.order-dashboard .item {
    border: 1px solid var(--border-color);
}
.order-dashboard .item .tit {
    background-color: var(--black-color);
    padding: 16px;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
}
.order-dashboard .item .cont {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.order-dashboard .item .cont .box {
    display: flex;
    gap: 24px;
}
.order-dashboard .item .cont .box.center {
    align-items: center;
}
.order-dashboard .item .cont .box span {
    font-size: 13px;
    font-weight: 400;
    color: var(--sub-txt-color-02);
    line-height: 1.3;
}
.order-dashboard .item .cont .box span:first-child {
    font-weight: 500;
    color: var(--black-color);
    min-width: 70px;
}
.order-dashboard .item .cont .box span:first-child b {
    color: var(--sub-color);
}
.order-dashboard .item .cont .box input[type="text"] {
    width: 100%;
    height: 50px;
    padding: 0 16px;
    border: 1px solid var(--border-color);
    border-radius: 3px;
}
.order-dashboard .item .cont .box textarea {
    width: 100%;
    height: 120px;
    padding: 16px;
    border: 1px solid var(--border-color);
    border-radius: 3px;
    resize: none;
}
.order-dashboard .item .cont .box .arrv {
    display: flex;
    gap: 24px;
    width: 100%;
    height: 50px;
    padding: 0 16px;
    background-color: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: 3px;
}
.order-dashboard .item .cont .box label {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
}
.order-dashboard .item .cont .box label input {
    width: 16px;
    height: 16px;
    margin: 0;
}
.order-dashboard .item .cont #bankFields {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.order-dashboard .rt {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.price-box {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-color);
}
.price-box .tp {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    border-bottom: 1px solid var(--border-color);
}
.price-box .tp .box {
    display: flex;
    justify-content: space-between;
}
.price-box .tp .box span {
    font-size: 12px;
    font-weight: 400;
    color: var(--sub-txt-color-02);
    line-height: 1.3;
}
.price-box .tp .box span b {
    color: var(--main-color);
}
.price-box .tp .box span:first-child {
    font-weight: 500;
    color: var(--black-color);
}
.price-box .bt .box {
    background-color: var(--bg-color);
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
}
.price-box .bt .box:not(:last-child) {
    border-bottom: 1px solid var(--border-color);
}
.price-box .bt .box span {
    font-size: 12px;
    font-weight: 500;
    color: var(--black-color);
    line-height: 1.3;
    position: relative;
}
.price-box .bt .box span:first-child {
    font-weight: 500;
    color: var(--black-color);
}
.sm-btn-wrap {
    padding: 24px 0;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 24px;
}
.sm-btn-wrap button {
    font-size: 12px;
    font-weight: 400;
    color: var(--sub-txt-color-02);
    padding: 2px 10px;
    border-radius: 3px;
    border: 1px solid var(--border-color);
}
.sm-btn-wrap button:hover {
    background-color: var(--bg-color);
}
.simple-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 24px;
}
.simple-info .item {
    padding: 24px;
    display: flex;
    justify-content: space-between;
    border: 1px solid var(--border-color);
    margin-left: -1px;
}
.simple-info .item.bg {
    background-color: var(--bg-color);
}
.simple-info .item span {
    display: inline-block;
    color: var(--sub-txt-color-02);
}
.simple-info .item span b {
    font-weight: 500;
    color: var(--black-color);
}
.radio-item {
    width: 100%;
    display: flex;
    gap: 8px;
}
.radio-item label {
    cursor: pointer;
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    outline: 1px solid var(--border-color);
    border-radius: 3px;
    font-size: 14px;
    color: var(--black-color);
}
.radio-item label img {
    width: 18px;
}
.radio-item input[type="radio"] {
    display: none;
}
.radio-item input[type="radio"]:checked + label {
    outline: 1px solid var(--black-color);
}
.input-db {
    width: 100%;
    display: flex;
    align-items: flex-end;
    gap: 8px;
}
.add-box {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.add-box .input-box {
    margin-top: 0;
}
.mb-60 {
    margin-bottom: 60px;
}
/*상품*/
.best-page {
    padding-top: 100px;
    position: relative;
}
.product-page {
    padding-top: 48px;
}
.product-page .hd {
    margin-bottom: 60px;
}
.product-page .hd .cate-tit {
    display: flex;
    align-items: center;
    padding-bottom: 24px;
    border-bottom: 2px solid var(--black-color);
    font-size: 24px;
    font-weight: 600;
    color: var(--black-color);
    margin-bottom: 24px;
}
.product-page .hd .cate-tit::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 100%;
    background-color: var(--green-color);
    margin-right: 8px;
}
.product-page .hd .cate-grid {
    padding: 24px;
    background-color: var(--bg-color);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.product-page .hd .cate-grid a {
   padding: 16px;
   background-color: #fff;
   font-size: 16px;
   font-weight: 500;
   color: var(--sub-txt-color-03);
   border: 1px solid var(--border-color);
   margin-left: -1px;
   text-align: center;
}
.product-page .hd .cate-grid a.on {
    color: var(--black-color);
}
.product-page .hd .cate-grid a:hover {
    color: var(--black-color);
}
.product-filter {
    border-top: 2px solid var(--black-color);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    gap: 36px;
    margin-bottom: 36px;
}
.product-filter a {
    font-size: 16px;
    font-weight: 400;
    color: var(--sub-txt-color-03);
    padding: 24px 0;
}
.product-filter a.on {
    border-bottom: 2px solid var(--black-color);
    color: var(--black-color);
}
.product-filter a:hover {
    border-bottom: 2px solid var(--black-color);
    color: var(--black-color);
}
.product-tp {
    display: flex;
    gap: 48px;
    margin-bottom: 60px;
}
.product-tp .lt {
    width: 500px;
    position: relative;
}
.product-tp .rt {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 36px;
}
.product-tp .rt .rt-tit {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.product-tp .rt .rt-tit p:first-child {
    font-size: 28px;
    font-weight: 600;
    color: var(--black-color);
    line-height: 1.3;
}
.product-tp .rt .rt-tit p:nth-child(2) {
    font-size: 18px;
    font-weight: 700;
    color: var(--green-color);
    line-height: 1.3;
}
.rt-price {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.rt-price .item {
    display: flex;
    justify-content: space-between;
}
.rt-price .item .pa {
    display: flex;
    align-items: center;
    gap: 12px;
}
.rt-price .item .pa span:first-child {
    font-size: 14px;
    font-weight: 500;
    color: var(--sub-txt-color-02);
    min-width: 80px;
    display: inline-block;
}
.rt-price .item .pa span:nth-child(2) {
    font-size: 18px;
    font-weight: 500;
    color: var(--black-color);
}
.rt-price .item .pa span:nth-child(2).hp {
    text-decoration: line-through;
    color: var(--sub-txt-color-03);
}
.rt-price .item .pa span:nth-child(2) b {
    font-size: 14px;
    color: var(--black-color);
}
.rt-price .item .pa span:nth-child(2).hp b {
    color: var(--sub-txt-color-03);
}
.rt-price .item .pa span:nth-child(2) .sale {
    color: var(--sub-color);
    margin-left: 12px;
}
.rt-price .item .pa span:nth-child(2).mc-txt {
    color: var(--main-color);
}
.rt-price .item .cp-download {
    font-size: 12px;
    font-weight: 400;
    color: #fff;
    letter-spacing: -1px;
    border-radius: 3px;
    padding: 5px 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    background-color: var(--black-color);
}
.rt-price .item .cp-download img {
    width: 12px;
}

.rt-option {
    padding: 24px 0;
    border-top: 2px solid var(--black-color);
    border-bottom: 2px solid var(--black-color);
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.rt-option .item {
    display: flex;
    align-items: center;
    gap: 12px;
}
.rt-option .item span:first-child {
    font-size: 14px;
    font-weight: 500;
    color: var(--sub-txt-color-02);
    min-width: 80px;
    display: inline-block;
}
.rt-option .item .shipping-expl {
    font-size: 14px;
    font-weight: 500;
    color: var(--sub-txt-color-02)
}
.rt-option .item select {
    width: 100%;
    height: 50px;
    line-height: 50px;
    padding: 0 16px;
    border: 1px solid var(--border-color);
}
.rt-cnt {
    padding: 24px;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    background-color: var(--bg-color);
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.rt-cnt > p {
    font-size: 14px;
    font-weight: 400;
    color: var(--black-color);
    margin-bottom: 16px;
}
.rt-cnt .box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.rt-cnt .box p {
    font-size: 14px;
    font-weight: 500;
    color: var(--black-color);
}
.rt-cnt .box .cnt-box {
    display: flex;
    align-items: center;
    gap: 4px;
}
.rt-cnt .box .cnt-box input {
    width: 100px;
    height: 30px;
    border: 1px solid var(--border-color);
    text-align: center;
}
.rt-cnt .box .cnt-box input[type="number"] {
  -moz-appearance: textfield;
}
.rt-cnt .box .cnt-box input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
.rt-cnt .box .cnt-box input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.rt-cnt .box .cnt-box .cnt-btn {
    display: flex;
    flex-direction: column;
    padding-bottom: 1px;
}
.rt-cnt .box .cnt-box .cnt-btn button {
    border: 1px solid var(--black-color);
    width: 20px;
    height: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.rt-cnt .box .cnt-box .cnt-btn button img {
    width: 8px;
    height: 5px;
}
.rt-cnt .box .cnt-box .cnt-btn button:first-child {
    border-radius: 3px 3px 0 0;
    margin-bottom: -1px;
}
.rt-cnt .box .cnt-box .cnt-btn button:nth-child(2) {
    border-radius: 0 0 3px 3px;
}
.rt-cnt .box .member-price {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    min-width: 150px;
}
.rt-cnt .box .member-price span {
    font-size: 18px;
    font-weight: 600;
    color: var(--black-color);
    display: inline-block;
}
.rt-cnt .box .member-price span font {
    font-size: 14px;
    font-weight: 400;
}
.rt-cnt .box .member-price button {
    width: 14px;
    height: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--black-color);
    font-size: 10px;
    color: #fff;
}
.rt-cnt .box .member-price button img {
    width: 11px;
}
.result-price {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.result-price .item {
    display: flex;
    justify-content: space-between;
}
.result-price .item span:first-child {
    font-size: 14px;
    font-weight: 500;
    color: var(--sub-txt-color-02);
    min-width: 80px;
    display: inline-block; 
}
.result-price .item span:nth-child(2) {
    font-size: 14px;
    font-weight: 400;
    color: var(--black-color);
}
.result-price .item:nth-child(2) {
    padding-bottom: 16px;
    border-bottom: 1px dashed var(--border-color);
}
.result-price .item span:nth-child(2) b {
    font-weight: 600;
}
.result-price .item:nth-child(3) {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 16px;
}
.result-price > p {
    font-size: 14px;
    font-weight: 400;
    color: var(--sub-txt-color-03);
    text-align: right;
}
.result-price > p b {
    color: var(--sub-color);
}


.post-slider {
    width: 100%;
    overflow: hidden;
    margin-bottom: 12px;
}
.post-slider .swiper-slide {
    width: 100%;
}
.post-slider .swiper-slide .img-box {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}
.post-slider .swiper-slide .img-box a {
    width: 100%;
    height: 100%;
    display: block;
}
.post-slider .swiper-slide .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.thumbnail-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
}
.thumbnail-slider .thumb-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    cursor: pointer;
}
.thumbnail-slider .thumb-nav:hover {
    opacity: .8;
}
.thumbnail-slider .thumb-nav.prev {
    left: 8px;
}
.thumbnail-slider .thumb-nav.next {
    right: 8px;
}
.thumbnail-slider .thumb-nav img {
    width: 28px;
}
.thumbnail-slider .swiper-slide {
    width: 100%;
    cursor: pointer;
}
.thumbnail-slider .swiper-slide .img-box {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}
.thumbnail-slider .swiper-slide .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.product-bt {
    position: relative;
}
.product-bt .tab-menu {
    display: flex;
    margin-bottom: 60px;
    position: sticky;
    top: 0;
    left: 0;
}
.product-bt .tab-menu button, .product-bt .tab-menu a {
    width: 100%;
    height: 60px;
    line-height: 60px;
    text-align: center;
    background-color: var(--bg-color);
    margin-left: -1px;
    border: 1px solid var(--border-color);
    font-weight: 400;
    color: var(--sub-txt-color-03);
}
.product-bt .tab-menu button.on, .product-bt .tab-menu a.on {
    background-color: #fff;
    color: var(--black-color);
    border-bottom: 3px solid var(--main-color);
} 
.product-bt .product-content .editor-area {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    margin-bottom: 60px;
}
.product-bt .product-content {
    display: none;
}
.product-bt .product-content.on {
    display: block;
}
.product-bt .product-content .product-expl-table {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
}
.product-expl-table table {
    width: 100%;
    border-top: 2px solid var(--black-color) !important;
    border-bottom: 1px solid var(--border-color);
    border-collapse: collapse !important;
}
.product-expl-table table th {
    background-color: var(--bg-color);
    text-align: left;
    padding: 16px;
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
    color: var(--black-color);
    line-height: 1.3;
}
.product-expl-table table td {
    text-align: left;
    padding: 16px;
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
    color: var(--sub-txt-color-02);
    line-height: 1.3;
}


.product-review .tp {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--border-color);
    padding: 24px;
}
.product-review .tp p:first-child {
    font-weight: 500;
    color: var(--black-color);
}
.product-review .tp p:nth-child(2) {
    font-size: 14px;
    font-weight: 400;
    color: var(--sub-txt-color-03);
}
.product-review .tp p:nth-child(3) {
    margin: 4px 0;
}
.product-review .tp button {
    border-radius: 3px;
    background-color: var(--black-color);
    padding: 6px 24px;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
}
.product-review .tp button:hover {
    opacity: .8;
}

.review-list li {
    display: flex;
    gap: 24px;
    padding: 24px 0;
    border-bottom: 1px solid var(--border-color);
}
.review-list li.empty {
    justify-content: center;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    color: var(--black-color);
    padding: 48px 24px;
}
.review-list li .img-box {
    width: 100px;
    min-width: 100px;
    height: 100px;
}
.review-list li .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.review-list li .content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.review-list li .content .txt {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.review-list li .content .txt p:first-child {
    font-size: 12px;
    font-weight: 400;
    color: var(--sub-txt-color-02);
}
.review-list li .content .txt p:nth-child(2) {
    font-size: 14px;
    font-weight: 400;
    color: var(--black-color);
    line-height: 1.3;
}
.review-list li .content .info {
    display: flex;
    align-items: center;
}
.review-list li .content .info span {
    font-size: 12px;
    color: var(--sub-txt-color-03);
    display: flex;
    align-items: center;
    gap: 4px;
}
.review-list li .content .info span:not(:last-child)::after {
    content: "";
    width: 1px;
    height: 10px;
    background-color: var(--border-color);
    display: inline-block;
    margin: 0 12px 0 8px;

}
.review-list li .content .info button {
    font-size: 12px;
    font-weight: 400;
    color: var(--sub-txt-color-02);
    padding: 2px 10px;
    border-radius: 3px;
    border: 1px solid var(--border-color);
}
.review-list li .content .info button:hover {
    background-color: var(--bg-color);
}
.star-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}
.star-grid label {
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
}
.star-grid label input {
    width: 16px;
    height: 16px;
    margin: 0;
}
.star-grid label span {
    display: inline-block;
    min-width: 45px;
    font-size: 12px;
    color: var(--sub-txt-color-02);
}

.support-area .write-box {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 16px;
}
.support-area .write-box button {
    border-radius: 3px;
    background-color: var(--black-color);
    padding: 6px 24px;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
}
.support-area .write-box button:hover {
    opacity: .8;
}


.support-list {
    border-top: 2px solid var(--black-color);
}
.support-list > li {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid var(--border-color);
}
.support-list > li.empty {
    align-items: center;
    padding: 48px 24px;
}
.support-list > li:not(:last-child) {
    border-bottom: 1px solid var(--border-color);
}
.support-list > li .tit-box {
    padding: 24px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}
.support-list > li .tit-box .box {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
}
.support-list > li .tit-box .cate {
    color: var(--main-color);
    display: flex;
    align-items: center;
    gap: 4px;
}
.support-list > li .tit-box .cate span {
    font-size: 12px;
    font-weight: 500;
    padding: 6px;
    border-radius: 3px;
    white-space: nowrap;
    display: inline-block;
}
.support-list > li .tit-box .cate span.wait {
    background-color: #fff;
    color: var(--black-color);
    border: 1px solid var(--black-color);
}
.support-list > li .tit-box .cate span.end {
    background-color: var(--black-color);
    color: #fff;
}
.support-list > li .tit-box .tit {
    width: 100%;
    font-size: 14px;
    color: var(--black-color);
    line-height: 1.3;
    display: flex;
    align-items: center;
    gap: 8px;
}
.support-list > li .tit-box .tit img {
    width: 16px;
}
.support-list > li .faq-arrow {
    width: 28px;
    margin-right: 24px;
    transition: .2s ease-in-out;
}
.support-list > li .faq-arrow.active {
    transform: rotate(90deg);
    transition: .2s ease-in-out;
}
.support-list > li .toggle-content {
    background-color: var(--bg-color);
    padding: 24px;
    line-height: 1.5;
    color: var(--sub-txt-color-02);
    display: none;
}
.support-list > li .toggle-content .qa {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.support-list > li .toggle-content .qa .item:first-child {
    padding-bottom: 24px;
    border-bottom: 1px dashed var(--border-color);
}
.support-list > li .toggle-content .qa .item p:first-child {
    font-size: 14px;
    font-weight: 500;
    color: var(--black-color);
    margin-bottom: 8px;
}
.support-list > li .toggle-content .qa .item p:nth-child(2) {
    font-size: 14px;
    font-weight: 400;
    color: var(--sub-txt-color-02);
    line-height: 1.3;
}


.support-list > li .tit-box .info {
    display: flex;
    align-items: center;
    white-space: nowrap;
}
.support-list > li .tit-box .info span {
    font-size: 12px;
    color: var(--sub-txt-color-03);
    display: flex;
    align-items: center;
    gap: 4px;
}
.support-list > li .tit-box .info span:not(:last-child)::after {
    content: "";
    width: 1px;
    height: 10px;
    background-color: var(--border-color);
    display: inline-block;
    margin: 0 12px 0 8px;

}
.support-list > li .tit-box .info button {
    font-size: 12px;
    font-weight: 400;
    color: var(--sub-txt-color-02);
    padding: 2px 10px;
    border-radius: 3px;
    border: 1px solid var(--border-color);
}
.support-list > li .tit-box .info button:hover {
    background-color: var(--bg-color);
}
.radio-box {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 24px;
}
.radio-box label {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 16px;
    font-weight: 400;
    color: var(--black-color);
}
.radio-box label input[type="radio"] {
    width: 16px;
    height: 16px;
    margin: 0;
    cursor: pointer;
}
.call-mobile {
    display: none;
}
.off-area {
    width: 100%;
    border-radius: 3px;
    font-size: 14px;
    font-weight: 400;
    color: var(--sub-txt-color-02);
    line-height: 1.5;
}
.off-area .terms-txt {
    width: 100%;
    height: 200px;
    border: 1px solid var(--border-color);
    border-radius: 3px;
    padding: 16px;
    font-size: 14px;
    font-weight: 400;
    color: var(--sub-txt-color-02);
    line-height: 1.5;
    overflow: hidden;
    overflow-y: auto;
    margin-bottom: 16px;
}
.off-area label {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-size: 16px;
    font-weight: 400;
    color: var(--black-color);
    margin-bottom: 12px;
}
.off-area label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    cursor: pointer;
    margin: 0;
}
.search-page {
    position: relative;
    padding-top: 48px;
}
.terms-page {
    min-height: 300px;
    white-space: pre-line;
}
.terms-page li {
    margin: 0;
    padding: 0;
}

.terms-page li p {
    margin: 0;
    padding: 0;
}
.terms-page li + li {
    margin-top: 4px; /* 항목 간 최소 간격만 */
}
.terms-page b {
    font-weight: bold;
}
.swiper-scrollbar {
    width: 100% !important;
    top: unset !important;
    left: 0 !important;
    right: unset !important;
    bottom: -12px !important;
}