:root {
    --main-color: #FFDD55;
    --bg-color: #F9F9F9;
    --bg-color-02: #F5F5F5;
    --black-color: #333333;
    --sub-txt-color: #555555;
    --border-color: #D9D9D9;
}
* {
  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: 1400px;
  margin: 0 auto;
}

/*모달*/
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 102;
  display: none;
}
.modal.terms .modal-box {
    max-width: 1200px;
}
.modal .modal-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 16px;
  box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 400px;
  overflow: hidden;
}
.modal .modal-box .tit-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  background-color: var(--main-color);
}
.modal .modal-box .tit-box span {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
}
.modal .modal-box .tit-box button {
  display: inline-block;
}
.modal .modal-box .tit-box img {
  width: 15px;
  height: 15px;
}
.modal .modal-box .content {
    background-color: #fff;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.5;
    height: auto;
    overflow-y: auto;
    padding: 16px;
}
.modal .modal-box .content .to {
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
}
.modal .modal-box .content .to span:first-child {
    color: var(--sub-txt-color-02);
}
.modal .modal-box .content .to span:nth-child(2) {
    font-weight: 500;
    color: var(--black-color);
}
.modal .modal-box .content textarea {
    width: 100%;
    height: 80px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 8px;
    color: var(--black-color);
}
.modal .modal-box .content > button {
    background-color: var(--main-color);
    width: 100%;
    height: 35px;
    line-height: 35px;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    border-radius: 4px;
}
.modal .modal-box .content > button:hover {
    opacity: .9;
}
.modal .terms-box {
    height: 500px;
    font-size: 14px;
    overflow: hidden;
    overflow-y: auto;
    line-height: 1.5;
}

.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;
}


/*header*/

.ham {
    display: none;
}
#ham_btn {
    display: none;
}
#ham_btn + label {
    position: relative;
    display: block;
    width: 36px;
    height: 20px;
    cursor: pointer;
    z-index: 10;
}
.header-wrap.main #ham_btn + label > span {
    background: #fff;
}
.header-wrap.on #ham_btn + label > span {
    background: var(--black-color);
}
#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: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    width: 100%;
    transition: .1s ease-in-out;
    border-bottom: 1px solid var(--border-color);
    background-color: #fff;
}
.header-wrap.main {
    background-color: transparent;
}
.header-wrap.on {
    background-color: #fff;
}
.container {
    width: 100%;
    max-width: 1400px;
    height: 100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-wrap .h-logo {
    width: 250px;
    height: 60px;
    background-image: url('../images/logo/logo_mc.png');
    background-size: 100% 100%;
    background-position: center center;
    background-repeat: no-repeat;
}
.header-wrap.main .h-logo {
    background-image: url('../images/logo/logo_wc.png');
}
.header-wrap.on .h-logo {
    background-image: url('../images/logo/logo_mc.png');
}

.gnb {
    display: flex;
    gap: 48px;
}

.gnb > li > a {
    font-size: 18px;
    color: var(--black-color);
    display: block;
    position: relative;
    transition: .2s ease-in-out;
    padding-bottom: 4px;
}
.gnb > li > a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: .2s ease-in-out;
    width: 0;
    height: 2px;
    background-color: var(--main-color);
}
.gnb > li > a:hover::after {
    width: 100%;
}
.header-wrap.main .gnb > li > a {
    color: #fff;
}
.header-wrap.on .gnb > li > a {
    color: var(--black-color);
}

/*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;
    gap: 48px;
}
.fnb > li > a {
    color: var(--black-color);
}
.footer-wrap .tp .fnb-area > a {
    color: var(--black-color);
    cursor: pointer;
}
.footer-wrap .info-area {
    padding: 36px 0;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
}
.footer-wrap .info-area .info {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.footer-wrap .info-area .info > p {
    font-size: 16px;
    font-weight: 600;
    color: var(--sub-txt-color);
}
.footer-wrap .info-area .info ul {
    display: flex;
    gap: 8px 0;
    flex-wrap: wrap;
}
.footer-wrap .info-area .info ul li {
    font-size: 14px;
    color: var(--sub-txt-color);
    display: flex;
    align-items: center;
}
.footer-wrap .info-area .info ul li:not(:last-child)::after {
    content: "";
    width: 1px;
    height: 12px;
    background-color: var(--border-color);
    display: inline-block;
    margin: 0 16px;
}
.footer-wrap .info-area .copy {
    font-size: 14px;
    color: var(--sub-txt-color);
}



/*메인*/
.main-banner {
  width: 100%;
  height: 100dvh;
  overflow: hidden;
  position: relative;
}
.main-slider {
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.main-slider .swiper-slide .img-box {
    width: 100%;
    height: 100%;
    position: relative;
}
.main-slider .swiper-slide .img-box::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  background-color: rgba(0, 0, 0, 0.3);
}
.main-slider .swiper-slide .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.main-slider .swiper-slide .txt {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 100%;
  max-width: 1400px;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.main-slider .swiper-slide .txt .txt-hidden {
  overflow: hidden;
}
.main-slider .swiper-slide .txt .txt-hidden span {
  display: block;
  font-size: 38px;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
  word-break: keep-all;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.7);
}
.main-slider .swiper-slide.swiper-slide-active .txt .txt-hidden span {
  animation: txt-over 1.5s ease-in-out;
  animation-fill-mode: forwards;
}
.main-slider .swiper-slide .txt .sm-txt {
    width: 100%;
    font-size: 20px;
    font-weight: 400;
    color: #fff;
    line-height: 1.3;
    text-align: left;
    word-break: keep-all;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

@keyframes txt-over {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0);
  }
}

/*Scorll Down*/
.scroll-downs {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-downs p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 300;
}
.mousey {
  width: 2px;
  padding: 2px 6px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 10px;
  opacity: 0.75;
  box-sizing: content-box;
  margin: 0 auto 8px;
}
.scroller {
  width: 2px;
  height: 6px;
  border-radius: 25%;
  background-color: #fff;
  animation-name: scroll;
  animation-duration: 2.2s;
  animation-timing-function: cubic-bezier(.15,.41,.69,.94);
  animation-iteration-count: infinite;
}
@keyframes scroll {
  0% { opacity: 0; }
  10% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(10px); opacity: 0;}
}

.control {
  width: 100%;
  position: absolute;
  left: 50%;
  bottom: 80px;
  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: 53px;
  display: inline-block;
  width: max-content;
  position: relative;
  top: unset;
  left: unset;
  bottom: unset;
  color: #fff;
}
.swiper-pagination-total {
  color: #ddd;
}
.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: 58px;
    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: 32px;  
}
.contact-info .item span:nth-child(2) {
    font-size: 28px;
    font-weight: 700;
    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: 180px;
}
.page-tit {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 100px;
}
.flex-tit .page-tit {
    margin-bottom: 0;
}
.page-tit .tit-lg {
    font-size: 58px;
    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%;
    border-top: 1px solid var(--border-color);
    padding: 48px 0;
    text-align: center;
    grid-column: span 4;
}
.product-grid .item::after {
    content: "";
    width: 0;
    height: 1px;
    background-color: var(--black-color);
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 2;
    transition: .2s ease-in-out;
}
.product-grid .item:has(.link-area:hover)::after {
    width: 100%;
    transition: .2s ease-in-out;
}

.product-grid .item .img-box {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    display: block;
}
.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:nth-child(1) {
    font-size: 14px;
    font-weight: 500;
    color: #999;
    text-align: left;
}
.product-grid .item .txt p:nth-child(2) {
    font-size: 20px;
    font-weight: 500;
    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:nth-child(3) {
    font-size: 16px;
    font-weight: 400;
    color: var(--sub-txt-color);
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    text-align: left;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.product-grid .item .link-area {
    display: flex;
    align-items: center;
    gap: 4px;
}
.product-grid .item .link-area a {
    width: 100%;
    height: 45px;
    padding: 0 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 500;
    color: #fff;
    letter-spacing: -1px;
    transition: .2s ease-in-out;
}
.product-grid .item .link-area a:hover {
    opacity: .8;
    transition: .2s ease-in-out;
}
.product-grid .item .link-area a img {
    width: 16px;
}
.product-grid .item .link-area a.store-btn {
    background-color: var(--black-color);
}
.product-grid .item .link-area a.blog-btn {
    background-color: #03CF5D;
}



.contact-area {
    display: flex;
    gap: 36px;
}
.contact-area .bg-info {
    flex: 1;
    order: 1;
    position: relative;
}
.contact-area .bg-info .img-box {
    width: 100%;
    height: 100%;
    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: cover;
}
.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;
}
.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: 48px;
}

.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;
}