:root {
  --main-color: #020298;
  --sub-color: #008FF2;
  --bg-color: #F9FAFC;
  --black-color: #3A3A3A;
  --sub-txt-color-01: #555555;
  --sub-txt-color-02: #777777;
  --sub-txt-color-03: #999999;
  --border-color: #D9D9D9;
  --red-color: #F55A5C;
  --green-color: #4AC272;
}
* {
  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;
  overflow: hidden;
  overflow-y: auto;
}
main {
    overflow: hidden;
}

/*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; }

/*모달*/
.support-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 102;
  display: none;
}
.support-modal .content {
    position: absolute;
    top: 150px;
    left: 50%;
    transform: translateX(-50%);
    background-color: white;
    box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.support-modal .content span {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 100%;
    background-color: #f5f5f5;
    padding: 18px;
    border-radius: 12px;
}
.support-modal .content span p:first-child {
    font-size: 14px;
    font-weight: 400;
    color: var(--sub-txt-color-02);
    text-align: center;
}
.support-modal .content span p:last-child {
    font-size: 20px;
    font-weight: 700;
    color: var(--black-color);
    text-align: center;
}
.support-modal .content button {
    width: 100%;
    background-color: var(--red-color);
    padding: 16px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    text-align: center;
}
.support-modal .content button:hover {
    opacity: .8;
}
.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: 500px;
}
.modal.terms .modal-box {
  max-width: 1270px;
}
.modal.culture .modal-box {
    max-width: 900px;
}
.modal.floating-01 .modal-box, .modal.floating-02 .modal-box {
  max-width: 500px;
}
.modal .modal-box .modal-tit-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  background-color: var(--main-color);
}
.modal .modal-box .modal-tit-box span {
  font-size: 18px;
  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 {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.5;
  height: auto;
  overflow-y: auto;
  padding: 24px;
}
.modal .modal-box .content.terms {
  min-height: 500px;
  max-height: 700px;
}

.modal .modal-box .modal-content {
    padding: 24px;
    display: flex;
    gap: 24px;
}
.modal .modal-box .modal-content .img-box {
    width: 100%;
    max-width: 300px;
    aspect-ratio: 1 / 1.41;
}
.modal .modal-box .modal-content .txt {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.modal .modal-box .modal-content .txt > .txt-tit {
    display: block;
    font-size: 24px;
    font-weight: 600;
    color: var(--black-color);
    line-height: 1.3;
    cursor: pointer;
}
.modal .modal-box .modal-content .txt .box {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
}
.modal .modal-box .modal-content .txt .box > div {
    display: flex;
    gap: 12px;
}
.modal .modal-box .modal-content .txt .box > div span:first-child {
    display: inline-block;
    color: var(--black-color);
    min-width: 80px;
    white-space: nowrap;
    line-height: 1.3;
}
.modal .modal-box .modal-content .txt .box > div span:nth-child(2) {
    color: var(--sub-txt-color-02);
    line-height: 1.3;
}

/*공통*/
.wrap {
  width: 100%;
  max-width: 1520px;
  margin: 0 auto;
}
.bg-wrap {
    width: 100%;
    padding: 150px 0;
    background-color: var(--bg-color);
}

.top-btn {
  width: 48px;
  height: 48px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  cursor: pointer;
  border: 1px solid var(--black-color);
}
.top-btn img {
  width: 24px;
}




/*header*/
.ham {
    display: none;
}
#ham_btn {
    display: none;
}
#ham_btn + label {
  position: relative;
  display: block;
  width: 36px;
  height: 22px;
  cursor: pointer;
  z-index: 10;
}
#ham_btn + label > span {
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  background-color: #fff;
  border-radius: 5px;
  transition: all 300ms;
}
.header-wrap:hover #ham_btn + label > span {
    background-color: var(--black-color);
}
.header-wrap.on #ham_btn + label > span {
    background-color: var(--black-color);
}
.header-wrap.hover-on #ham_btn + label > span {
    background-color: var(--black-color);
}
#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 {
    width: 100%;
    height: 80px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    transition: all .2s ease-in-out;
}
.header-wrap:hover {
    background-color: #fff;
}
.header-wrap.on {
    background-color: #fff;
    border-bottom: 1px solid var(--border-color);
}
.header-wrap .container {
    width: 100%;
    max-width: 1520px;
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.h-logo {
    width: 130px;
    height: 40px;
    background-image: url('../images/logo/logo_wc.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
}
.header-wrap:hover .h-logo {
    background-image: url('../images/logo/logo_mc.png');
}
.header-wrap.on .h-logo {
    background-image: url('../images/logo/logo_mc.png');
}
.gnb {
    display: flex;
    gap: 36px;
}
.gnb > li > a {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
}
.header-wrap:hover .gnb > li > a {
    color: var(--black-color);
}
.header-wrap.on .gnb > li > a {
    color: var(--black-color);
}
.gnb > li > a:hover {
    color: #6464e9 !important;
}
.gnb > li > a.on {
    color: #6464e9 !important;
}
.footer-wrap .hd .other-link {
    display: flex;
    align-items: center;
    gap: 24px;
}
.footer-wrap .hd .other-link .terms-link {
    display: flex;
    gap: 24px;
}
.footer-wrap .hd .other-link .terms-link a {
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    color: var(--sub-txt-color-02);
}
.footer-wrap .hd .other-link .terms-link a:first-child {
    font-weight: 700;
    color: var(--black-color);
}
.footer-wrap .hd .other-link .terms-link a:hover {
    color: var(--black-color);
}


/*footer*/
footer {
    background-color: var(--bg-color);
    padding: 60px 0;
}
.footer-wrap .hd {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    padding-bottom: 36px;
    border-bottom: 1px solid var(--border-color);
}
.footer-wrap .hd .f-logo {
    display: inline-block;
}
.footer-wrap .hd .f-logo img {
    width: 130px;
}
.footer-wrap .hd .btn-wrap a {
    width: 250px;
}

.footer-wrap .bt {
    margin-top: 36px;
    display: flex;
    justify-content: space-between;
    gap: 24px;
}
.footer-wrap .bt .lt {
    display: flex;
    flex-direction: column;
}
.footer-wrap .bt .lt > p {
    font-size: 18px;
    font-weight: 700;
    color: var(--black-color);
    margin-bottom: 24px;
}
.footer-info {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
    margin-bottom: 24px;
}
.footer-info .item {
    display: flex;
    align-items: center;
    gap: 12px;
}
.footer-info .item::after {
    content: "";
    display: inline-block;
    width: 1px;
    height: 12px;
    background-color: var(--border-color);
}
.footer-info .item:last-child::after {
    display: none;
}
.footer-info .item span {
    display: inline-block;
    font-size: 14px;
    font-weight: 400;
    color: var(--sub-txt-color-02);
}
.footer-wrap .bt .lt {
    width: 50%;
}
.footer-wrap .bt .rt {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
}
.warning {
    font-size: 14px;
    font-weight: 400;
    color: var(--sub-txt-color-02);
    margin-bottom: 12px;
}
.copy {
    font-size: 14px;
    font-weight: 400;
    color: var(--sub-txt-color-02);
}

.social-link {
    display: flex;
    align-items: center;
    gap: 8px;
}
.social-link .item {
    border-radius: 3px;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
}
.social-link .item:hover {
    background-color: #f5f5f5;
}
.social-link .item img {
    width: 24px;
}


/*main*/

.main-banner {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: relative;
}
.banner-slider {
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.banner-slider .swiper-slide {
    width: 100%;
    height: 100%;
}
.banner-slider .swiper-slide .img-box {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}
.main-banner .img-box {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}
.main-banner .img-box video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/*
.banner-slider .swiper-slide .img-box::after {
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    background-color: rgba(0, 0, 0, 0.3);
}
*/
.banner-slider .swiper-slide .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.banner-slider .swiper-slide .img-box video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    vertical-align: bottom;
}


.main-banner .content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 48px;
    width: 100%;
    max-width: 1400px;
    height: 100%;
}
.main-banner .content .txt {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}
.main-banner .content .txt .txt-hidden {
  overflow: hidden;
}
.main-banner .content .txt .txt-hidden span {
    display: block;
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    line-height: 1.3;
    word-break: keep-all;
}
.main-banner .content .txt .txt-hidden span {
  animation: txt-over 1.5s ease-in-out;
  animation-fill-mode: forwards;
}
.main-banner .content .txt > p {
    font-size: 18px;
    font-weight: 400;
    color: #fff;
    text-align: center;
}
@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;}
}


.main-page {
    display: flex;
    flex-direction: column;
    gap: 180px;
    padding: 150px 0;
}
.main-copy {
    margin-bottom: 60px;
}
.main-copy.mb-24 {
    margin-bottom: 24px;
}
.main-copy.left {
    text-align: left;
}
.main-copy p:first-child {
    font-size: 36px;
    font-weight: 700;
    color: var(--black-color);
    text-align: center;
    line-height: 1.3;
    word-break: keep-all;
    margin-bottom: 24px;
}
.main-copy.white p:first-child {
    color: #fff;
}
.main-copy.left p:first-child {
    text-align: left;
}
.main-copy p:first-child br.uv {
    display: none;
}
.main-copy p:first-child .red-txt {
    color: var(--red-color);
}
.main-copy p:first-child .green-txt {
    color: var(--green-color);
}
.main-copy p:nth-child(2) {
    font-size: 16px;
    font-weight: 400;
    color: var(--sub-txt-color-01);
    text-align: center;
    line-height: 1.5;
    word-break: keep-all;
}
.main-copy.white p:nth-child(2) {
    color: #fff;
}
.main-copy.left p:nth-child(2) {
    text-align: left;
}
.main-copy .copy-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.main-copy .copy-list span {
    display: block;
    font-size: 16px;
    font-weight: 400;
    color: var(--sub-txt-color-01);
    line-height: 1.3;
}
.main-copy .copy-list span b {
    font-weight: 700;
    color: var(--black-color);
}
.ac-01 .tp {
    display: flex;
    gap: 24px;
}
.ac-01 .tp .item {
    width: 50%;
    height: 300px;
    display: flex;
}
.ac-01 .tp .item:last-child {
    flex-direction: row-reverse;
}
.ac-01 .tp .item .img-box {
    width: 100%;
    max-width: 500px;
    height: 100%;
    border-radius: 0 300px 300px 0;
    overflow: hidden;
}
.ac-01 .tp .item:last-child .img-box {
    border-radius: 300px 0 0 300px;
}
.ac-01 .tp .item .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ac-01 .tp .item .circle {
    width: 300px;
    height: 300px;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    border-radius: 100%;
    background-color: rgba(23, 27, 221, 0.8);
    margin-left: -50px;
}
.ac-01 .tp .item:last-child .circle {
    background-color: rgba(229, 15, 15, .8);
    margin-left: 0;
    margin-right: -50px;
    z-index: 2;
}
.ac-01 .tp .item .circle p:first-child {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    text-align: center;
}
.ac-01 .tp .item .circle p:last-child {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    line-height: 1.3;
    word-break: keep-all;
}

.ac-01 .line {
    width: 1px;
    height: 60px;
    display: block;
    margin: 48px auto;
    background-color: var(--border-color);
}





/*pages*/
.sub-banner {
    width: 100%;
    height: 600px;
    position: relative;
}
.sub-banner .bg {
    width: 100%;
    height: 100%;
    position: relative;
}
.sub-banner .bg::after {
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    background-color: rgba(0, 0, 0, 0.1);
}
.sub-banner .bg.review-bg {
    background-image: url('../images/common/sub_banner_case_new.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom center;

}
.sub-banner .bg.terms-bg {
    background-image: url('../images/common/sub_banner_terms.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom center;
}
.sub-banner .bg.insight-bg {
    background-image: url('../images/common/sub_banner_insight_new.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom center;

}
.sub-banner .bg.notice-bg {
    background-image: url('../images/common/sub_banner_notice_new.png');
    background-size: fill;
    background-repeat: no-repeat;
    background-position: bottom center;

}
.sub-banner .bg.support-bg {
    background-image: url('../images/common/sub_banner_support.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom center;

}
.sub-banner .bg.product-bg {
    background-image: url('../images/common/sub_banner_product_new_2.png');
    background-size: fill;
    background-repeat: no-repeat;
    background-position: bottom center;

}
.sub-banner .bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.sub-banner .txt {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    padding: 48px 16px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}
.sub-banner .txt .main-tit {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    text-align: center;
}
.sub-banner .txt .sub-tit {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    text-align: center;
    word-break: keep-all;
    line-height: 1.3;
}
.sub-banner .txt .location {
    display: flex;
    align-items: center;
    gap: 16px;
}
.sub-banner .txt .location a {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
}
.sub-banner .txt .location a img {
    width: 20px;
}
.sub-banner .txt .location > img {
    width: 12px;
}
.sub-banner .txt .location span {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
}

.page-area {
    padding: 130px 0;
}

.main-post {
    display: flex;
    align-items: center;
    gap: 48px;
    margin-bottom: 100px;
}
.main-post .img-box {
    width: 50%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid var(--border-color);
}
.main-post .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .2s ease-in-out;
}
.main-post .txt {
    width: 50%;
    display: flex;
    flex-direction: column;
}
.main-post:has(.txt:hover) .img-box img {
    scale: 1.1;
}
.main-post .txt .tit {
    color: var(--black-color);
    font-size: 28px;
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    text-align: left;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    margin-bottom: 24px;
}
.main-post .txt .tit:hover {
    color: var(--sub-txt-color-02);
}
.main-post .txt .content {
    color: var(--sub-txt-color-02);
    font-size: 16px;
    font-weight: 400;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    text-align: left;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    margin-bottom: 24px;
    line-height: 1.5;
    margin-bottom: 48px;
}
.main-post .txt .date {
    font-size: 14px;
    font-weight: 500;
    color: var(--sub-txt-color-03);
}

.review-list {
    display: flex;
    flex-direction: column;
    gap: 48px;
}
.review-list .hd {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
}
.review-list .hd .total {
    font-size: 16px;
    font-weight: 500;
    color: var(--sub-txt-color-01);
}
.review-list .hd .total span {
    font-weight: 700;
    color: var(--main-color);
}
.review-list .hd .search {
    width: 100%;
    max-width: 250px;
    height: 50px;
    border-radius: 100px;
    padding: 0 24px;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.review-list .hd .search input {
    width: 100%;
    border: none;
    padding: 0;
}
.review-list .hd .search button {
    width: 20px;
    min-width: 20px;
}
.review-list .hd .search img {
    width: 20px;
}

.review-list .list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--border-color);
}
.review-list .list .item {
    display: flex;
    gap: 36px;
}
.review-list .list .item.empty {
    justify-content: center;
    font-size: 16px;
    font-weight: 500;
    color: var(--black-color);
    padding: 48px 0;
    grid-column: 1 / -1;
}
.review-list .list .item .img-box {
    width: 100%;
    max-width: 350px;
    aspect-ratio: 16 / 9;
    border-radius: 16px;
    overflow: hidden;
}
.review-list .list .item .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .2s ease-in-out;
}
.review-list .list .item:hover .img-box img {
    scale: 1.1;
}
.review-list .list .item .txt .tit {
    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: 2;
    -webkit-box-orient: vertical;
    margin-bottom: 24px;
    line-height: 1.5;
}
.review-list .list .item .txt .date {
    font-size: 14px;
    font-weight: 500;
    color: var(--sub-txt-color-03);
}

/*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.mb-130 {
  margin-bottom: 130px;
}
.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%;
  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(--main-color);
  text-decoration: underline;
}
.pagination li.page-on {
  color: var(--main-color) !important;
  text-decoration: underline;
}
.pagination li.page-on a {
    color: #fff !important;
    background-color: var(--main-color);
    border-radius: 100%;
}
.pagination li a img {
  height: 10px;
  object-fit: cover;
}


.view-area {
    border-top: 2px solid var(--black-color);
    border-bottom: 2px solid var(--black-color);
}
.view-area .tit-box {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 24px;
    border-bottom: 1px solid var(--border-color);
}
.view-area .tit-box .tit {
    font-size: 22px;
    font-weight: 500;
    color: var(--black-color);
    line-height: 1.3;
}
.view-area .tit-box .info {
    display: flex;
    align-items: center;
}
.view-area .tit-box .info span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 16px;
    color: var(--sub-txt-color-02);
}
.view-area .tit-box .info span:first-child::after {
    content: "";
    display: inline-block;
    width: 1px;
    height: 14px;
    background-color: var(--border-color);
    margin: 0 12px;
}
.view-area .tit-box .info span img {
    width: 20px;
}

.editor-area {
    padding: 48px 24px;
    min-height: 250px;
    white-space: pre-line;
    line-height: 1.3;
}
.editor-area .thumb-box {
    text-align: center;
}
.other-area {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--border-color);
}
.other-area a {
    padding: 24px;
    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(--main-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);
}

.btn-wrap {
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}
.btn-wrap.ft {
    margin-top: 0;
    justify-content: flex-end;
}
.btn-wrap a {
    width: 100%;
    max-width: 250px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 500;
    color: var(--black-color);
    border-radius: 100px;
    border: 2px solid var(--black-color);
    padding: 0 24px;
}
.btn-wrap a img {
    width: 20px;
}
.btn-wrap a:hover {
    background-color: var(--bg-color);
}
.btn-wrap button {
    width: 100%;
    max-width: 250px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 500;
    color: var(--black-color);
    border-radius: 100px;
    border: 2px solid var(--black-color);
    padding: 0 24px;
}
.btn-wrap button:hover {
    background-color: var(--bg-color);
}
.btn-wrap button img {
    width: 20px;
}

.category {
    display: flex;
    justify-content: center;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 100px;
}
.category a {
    display: inline-block;
    font-size: 20px;
    font-weight: 500;
    color: var(--sub-txt-color-02);
    padding: 0 36px 24px;
}
.category a.on {
    padding: 0 36px 21px;
    color: var(--main-color);
    border-bottom: 3px solid var(--main-color);
}



.notice-list {
    border-bottom: 2px solid var(--black-color);
}
.notice-list > li {
    cursor: pointer;
    display: flex;
    flex-direction: column;
}
.notice-list > li.empty {
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    color: var(--black-color);
    padding: 48px 0;
}
.notice-list > li:not(:last-child) {
    border-bottom: 1px solid var(--border-color);
}
.notice-list > li .tit-box {
    padding: 24px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}
.notice-list > li .tit-box .box {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.notice-list > li .tit-box .cate {
    font-size: 14px;
    font-weight: 600;
    color: var(--main-color);
}
.notice-list > li .tit-box .tit {
    width: 100%;
    font-size: 24px;
    font-weight: 500;
    color: var(--black-color);
    line-height: 1.3;
}
.notice-list > li .tit-box .info {
    width: 100%;
    font-size: 14px;
    font-weight: 400;
    color: var(--sub-txt-color-03);
    line-height: 1.3;
}
.notice-list > li .faq-arrow {
    width: 60px;
    height: 60px;
    border-radius: 100%;
    background-color: var(--bg-color);
    transition: .2s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}
.notice-list > li .faq-arrow.active {
    transform: rotate(90deg);
    transition: .2s ease-in-out;
}
.notice-list > li .faq-arrow img {
    width: 24px;
}
.notice-list > li .toggle-content {
    padding: 24px;
    line-height: 1.5;
    color: var(--sub-txt-color-02);
    display: none;
    background-color: var(--bg-color);
}

.support {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}
.support .hd {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
}
.support .hd span:first-child {
    font-size: 24px;
    font-weight: 500;
    color: var(--black-color);
}
.support .hd span:last-child {
    font-size: 16px;
    font-weight: 500;
    color: var(--black-color);
}
.support .hd span:last-child b {
    color: var(--main-color);
    margin-right: 2px;
}

.input-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 36px 16px;
    margin-top: 36px;
}
.input-grid .item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.input-grid .item.ta {
    grid-column: 1 / -1;
}
.input-grid .item > p {
    font-size: 14px;
    font-weight: 500;
    color: var(--black-color);
}
.input-grid .item > p b {
    color: var(--main-color);
}
.input-grid .item .date-box {
    display: flex;
    position: relative;
}
.input-grid .item .date-box img {
    width: 20px;
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
}
.input-grid .item input[type="text"], .input-grid .item select {
    width: 100%;
    height: 60px;
    background-color: var(--bg-color);
    border: 2px solid var(--border-color);
    padding: 0 16px;
}
.input-grid .item textarea {
    width: 100%;
    height: 200px;
    background-color: var(--bg-color);
    border: 2px solid var(--border-color);
    padding: 16px;
}
select{
    -webkit-appearance: none;  /* 크롬 화살표 없애기 */
    -moz-appearance: none; /* 파이어폭스 화살표 없애기 */
    appearance: none;  /* 화살표 없애기 */
    display: inline-block;
    width: 100%;
    background: url('../images/icons/select_arrow.png') no-repeat 95% 50%;
}
.input-grid .item .radio-box {
    display: flex;
    gap: 24px;
    margin-top: 12px;
}
.input-grid .item .radio-box label {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    color: var(--black-color);
}
.input-grid .item .radio-box label input[type="radio"] {
    width: 18px;
    height: 18px;
    margin: 0;
}


.terms-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 60px;
}
.terms-box label {
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 400;
    color: var(--sub-txt-color-03);
    cursor: pointer;
}
.terms-box label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
    border-radius: 3px;
    margin-right: 5px;
}
.terms-box label span {
    font-weight: 500;
    color: var(--main-color);
}

.terms-box > button {
    font-size: 16px;
    font-weight: 600;
    color: var(--black-color);
    text-decoration: underline;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px 16px;
}

.product-grid .item.empty {
    text-align: center;
    align-items: center;
    font-size: 16px;
    font-weight: 500;
    color: var(--black-color);
    padding: 48px 0;
    grid-column: 1 / -1;
}
.product-grid .item.empty::after {
    display: none;
}
.product-grid .item {
    position: relative;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
}
.product-grid .item::after {
    content: "";
    width: 0;
    height: 1px;
    background-color: var(--main-color);
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    transition: all .2s ease-in-out;
}
.product-grid .item:hover::after {
    width: 100%;
}
.product-grid .item .img-box {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 24px;
}
.product-grid .item .img-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all .2s ease-in-out;
}
.product-grid .item:hover .img-box img {
    scale: 1.1;
}
.product-grid .item .txt {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.product-grid .item .txt .cate {
    font-size: 14px;
    font-weight: 600;
    color: var(--main-color);
}
.product-grid .item .txt .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;
    margin-bottom: 8px;
}
.product-grid .item .txt .info {
    display: flex;
    flex-direction: column;
    gap: 8px 0;
}
.product-grid .item .txt .info .box {
    display: flex;
    align-items: center;
}
.product-grid .item .txt .info .box span {
    display: inline-block;
    font-size: 14px;
    font-weight: 400;
    color: var(--sub-txt-color-02);
}
.product-page {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}
.product-view .hd {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
}
.product-view .hd .lt {
    width: 40%;
}
.product-view .hd .rt {
    width: 60%;
}
.product-info {
    display: flex;
    flex-direction: column;
    margin-bottom: 36px;
}
.product-info .cate {
    font-size: 14px;
    font-weight: 600;
    color: var(--main-color);
    margin-bottom: 12px;
}
.product-info .tit {
    font-size: 24px;
    font-weight: 600;
    color: var(--black-color);
    margin-bottom: 16px;
}
.product-info .expl {
    font-size: 16px;
    font-weight: 400;
    color: var(--black-color);
}
.sp-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 16px;
    padding-bottom: 36px;
    margin-bottom: 36px;
    border-bottom: 1px solid var(--border-color);
}
.sp-info .item {
    display: flex;
    gap: 16px;
}
.sp-info .item span:first-child {
    font-size: 14px;
    font-weight: 400;
    color: var(--sub-txt-color-02);
    width: 160px;
    min-width: 160px;
    line-height: 1.3;
}
.sp-info .item span:nth-child(2) {
    font-size: 14px;
    font-weight: 400;
    color: var(--black-color);
    line-height: 1.3;
}

.product-btn {
    display: flex;
    align-items: center;
    gap: 8px;
}
.product-btn a {
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}
.product-btn a:first-child {
    border: 1px solid var(--main-color);
    color: var(--main-color);
}
.product-btn a:nth-child(2) {
    border: 1px solid var(--black-color);
}
.product-btn a:nth-child(3) {
    border: 1px solid var(--black-color);
}



.post-slider {
    width: 100%;
    overflow: hidden;
    margin-bottom: 12px;
    position: relative;
}
.post-slider .pager {
    width: max-content;
    height: 30px;
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 0 16px;
    font-size: 14px;
    font-weight: 400;
    color: #fff;
}
.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%;
}
.thumbnail-slider .swiper-slide {
    width: 100%;
    cursor: pointer;
}
.thumbnail-slider .swiper-slide .img-box {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    position: relative;
}
.thumbnail-slider .swiper-slide .img-box::after {
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    background-color: rgba(0, 0, 0, 0.3);
}
.thumbnail-slider .swiper-slide.swiper-slide-thumb-active .img-box::after {
    display: none;
}
.thumbnail-slider .swiper-slide .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.details-view .info-hd {
    width: 100%;
    height: 60px;
    border: 1px solid var(--border-color);
    border-bottom: 2px solid var(--main-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
    color: var(--black-color);
}
.details-view .editor-product {
    padding: 80px 0 100px;
    white-space: pre-line;
    border-bottom: 1px solid var(--border-color);
    text-align: center;
}
.details-view .editor-product video {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.warning-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 6px;
}
.warning-grid .item {
    background-color: var(--bg-color);
    border-radius: 24px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 24px;
}
.warning-grid .item .txt p:first-child {
    font-size: 20px;
    font-weight: 600;
    color: var(--black-color);
    margin-bottom: 16px;
    word-break: keep-all;
}
.warning-grid .item .txt p:nth-child(2) {
    font-size: 16px;
    font-weight: 400;
    color: var(--sub-txt-color-02);
    margin-bottom: 16px;
    line-height: 1.3;
    word-break: keep-all;
}
.warning-grid .item .icon {
    width: 48px;
    margin: 0 0 0 auto;
}

.ac-02 {
    display: flex;
}
.ac-02 .lt {
    width: 50%;
    position: relative;
}
.ac-02 .lt .bg {
    width: 100%;
    height: 100%;
}
.ac-02 .lt .bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    vertical-align: bottom;
}
.ac-02 .lt .txt {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 60px;
    padding-left: calc((100vw - 1520px) / 2);
}
.ac-02 .lt .txt span {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}
.ac-02 .lt .txt .made-logo {
    display: flex;
    gap: 36px;
}
.ac-02 .lt .txt .made-logo img {
    height: 50px;
}
.ac-02 .rt {
    width: 50%;
    background-color: var(--bg-color);
    padding-right: calc((100vw - 1520px) / 2);
    padding-left: 80px;
    position: relative;
    padding-top: 100px;
    padding-bottom: 100px;
}
.ac-02 .rt::before {
    content: "";
    position: absolute;
    top: 0;
    left: 80px;
    display: block;
    background-color: var(--border-color);
    width: 1px;
    height: 100%;
}
.ac-02 .rt .item {
    position: relative;
    padding-left: 36px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 60px;
}
.ac-02 .rt .item::before {
    content: "";
    width: 24px;
    height: 24px;
    background-image: url('../images/icons/ac_02_circle.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
    display: block;
    position: absolute;
    top: 2px;
    left: -12px;
}
.ac-02 .rt .item:last-child {
    margin-bottom: 0;
}
.ac-02 .rt .item .txt p:first-child {
    font-size: 24px;
    font-weight: 700;
    color: var(--black-color);
    margin-bottom: 12px;
}
.ac-02 .rt .item .txt p:last-child {
    font-size: 16px;
    font-weight: 400;
    color: var(--sub-txt-color-01);
    line-height: 1.5;
}
.ac-02 .rt .item .img-box img {
    border-radius: 12px;
    box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.1);
}

.ac-03 {
    display: flex;
    flex-direction: column;
    gap: 80px;
}
.ac-03 .item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}
.ac-03 .item.reverse {
    flex-direction: row-reverse;
}
.ac-03 .item .txt {
    width: 50%;
    text-align: left;
}
.ac-03 .item .img-box {
    width: 50%;
}
.ac-03 .item .tag {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.ac-03 .item .tag span {
    display: inline-block;
    background-color: #f5f5f5;
    border-radius: 100px;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--sub-txt-color-01);
}
.ac-04 .hd {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
    border-radius: 24px;
    box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.1);
    padding: 48px;
    background-color: #fff;
    margin-bottom: 48px;
}
.ac-04 .hd > span {
    display: block;
    font-size: 24px;
    font-weight: 600;
    color: var(--black-color);
    line-height: 1.3;
}
.ac-04-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.ac-04-grid .item {
    width: 300px;
    background-color: var(--bg-color);
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 36px;
    border-radius: 12px;
}
.ac-04-grid .item p {
    font-size: 20px;
    font-weight: 600;
    color: var(--black-color);
    line-height: 1.3;
    word-break: keep-all;
}
.ac-04-grid .item img {
    width: 48px;
    margin: 0 0 0 auto;
}

.ac-04 .bt {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    border-radius: 24px;
    box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.1);
    padding: 100px;
    background-color: #fff;
    margin-bottom: 48px;
}
.ac-04 .bt .graph {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    padding-bottom: 100px;
    margin-bottom: 100px;
    border-bottom: 1px solid var(--border-color);
}
.ac-04 .bt .graph .img-box {
    width: 50%;
    text-align: right;
}
.ac-04 .bt .graph .main-copy {
    width: 50%;
}

.step-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
}
.step-grid .item {
    border-radius: 36px;
    box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.1);
    padding: 36px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
}
.step-grid .item:not(:last-child)::after {
    content: "";
    width: 28px;
    height: 28px;
    background-image: url('../images/icons/step_right_arrow.png');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 50%;
    right: -38px;
    transform: translateY(-50%);
}
.step-grid .item .txt p:first-child {
    font-size: 24px;
    font-weight: 600;
    color: var(--black-color);
    margin-bottom: 12px;
}
.step-grid .item .txt p:last-child {
    font-size: 16px;
    font-weight: 400;
    color: var(--sub-txt-color-01);
    line-height: 1.3;
    word-break: keep-all;
}
.step-grid .item img {
    width: 48px;
    margin: 0 0 0 auto;
}

.main-link {
    display: flex;
    justify-content: center;
}
.main-link a {
    font-weight: 400;
    color: #fff;
    border-radius: 100px;
    background-color: var(--red-color);
    min-width: 200px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 16px 12px 24px;
}
.main-link a:hover {
    opacity: .8;
}
.main-link a img {
    width: 18px;
}

.video-box {
    width: 100%;
    aspect-ratio: 5 / 2;
    border-radius: 12px;
    overflow: hidden;
    margin-top: 48px;
}
.video-box iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ac-06 {
    display: flex;
    border-radius: 24px;
    overflow: hidden;
}
.ac-06 .lt {
    width: 400px;
}
.ac-06 .lt img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    vertical-align: bottom;
}
.ac-06 .rt {
    flex: 1;
    position: relative;
}
.ac-06 .rt .bg {
    width: 100%;
    height: 100%;
    position: relative;
}
.ac-06 .rt .bg::after {
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    background-color: rgba(0, 0, 0, 0.9);
}
.ac-06 .rt .bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    vertical-align: bottom;
}
.ac-06 .rt .content {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 48px;
    padding: 100px 48px;
    overflow: hidden;
}
.ac-06 .rt .content > p {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}

.ac-06-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 12px;
}
.ac-06-grid .item {
    width: 100%;
    height: 100%;
    background-color: #fff;
    border-radius: 12px;
    padding: 36px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.ac-06-grid .item .icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-color);
    border-radius: 100%;
    margin-bottom: 24px;
}
.ac-06-grid .item .icon img {
    width: 38px;
}
.ac-06-grid .item > img {
    margin-bottom: 16px;
}
.ac-06-grid .item > p {
    font-size: 16px;
    font-weight: 400;
    color: var(--sub-txt-color-01);
    line-height: 1.3;
    text-align: center;
    word-break: keep-all;
}

.ac-07 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    position: relative;
}
.ac-07 .lt > img {
    width: 130px;
    margin-bottom: 36px;
}
.ac-07 .rt {
    width: 100%;
    max-width: 900px;
}
.ac-07-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.ac-07-grid .item {
    border-radius: 24px;
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
}
.ac-07-grid .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}



.review-slider {
  width: 100%;
  padding-bottom: 12px;
  position: relative;
  margin-bottom: 60px;
  margin-top: 48px;
}

.review-item {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 24px;
}
.review-item .img-box {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.review-item .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .2s ease-in-out;
}
.review-item:hover .img-box img {
    scale: 1.1;
    transition: all .2s ease-in-out;
}
.review-item .txt {
  display: flex;
  flex-direction: column;
}
.review-item .txt .tit {
    font-size: 16px;
    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;
    margin-bottom: 12px;
}
.review-item .txt .content {
    font-size: 14px;
    font-weight: 400;
    color: var(--sub-txt-color-02);
    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;
    margin-bottom: 24px;
}
.review-item .txt .date {
    font-size: 14px;
    font-weight: 500;
    color: var(--sub-txt-color-02);
}
.review-slider .swiper-scrollbar {
	height: 2px !important;
    background: var(--border-color);
    width: 100%;
    top: unset;
    left: unset;
    bottom: unset;
    right: unset;
}
.review-slider .swiper-scrollbar-drag {
	height: 2px;
    background: var(--main-color);
}


.kiosk-01 {
    display: flex;
}
.kiosk-01 .lt {
    width: 50%;
    position: relative;
}
.kiosk-01 .lt .bg {
    width: 100%;
    height: 100%;
}
.kiosk-01 .lt .bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.kiosk-01 .lt .txt {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}
.kiosk-01 .lt .txt p:first-child {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    line-height: 1.3;
    margin-bottom: 24px;
}
.kiosk-01 .lt .txt p:last-child {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    text-align: center;
    line-height: 1.5;
}
.kiosk-01 .rt {
    width: 50%;
    background-color: var(--bg-color);
    padding: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.kiosk-02 {
    display: flex;
}
.kiosk-02 .lt {
    width: 50%;
}
.kiosk-02 .rt {
    width: 50%;
    position: relative;
}
.kiosk-02 .rt > img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}
.kiosk-02-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.kiosk-02-grid .item {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
}
.kiosk-02-grid .item .bg {
    width: 100%;
    aspect-ratio: 1 / 1;
    position: relative;
    overflow: hidden;
}
.kiosk-02-grid .item .bg::after {
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
}
.kiosk-02-grid .item .bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.kiosk-02-grid .item .txt {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 48px 36px;
}
.kiosk-02-grid .item .txt p:first-child {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 16px;
}
.kiosk-02-grid .item .txt p:last-child {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    line-height: 1.3;
}

.kiosk-03 {
    display: flex;
    flex-direction: column;
    gap: 80px;
}
.kiosk-03 .hd {
    height: 500px;
    position: relative;
}
.kiosk-03 .hd .bg {
    width: 100%;
    height: 100%;
    border-radius: 24px;
    overflow: hidden;
}
.kiosk-03 .hd .bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.kiosk-03 .hd .content {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.kiosk-03 .hd .content > p {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 48px;
}
.kiosk-03-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.kiosk-03-grid .item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 24px 16px;
}
.kiosk-03-grid .item:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}
.kiosk-03-grid .item .icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border-radius: 100%;;
}
.kiosk-03-grid .item .icon img {
    width: 38px;
}
.kiosk-03-grid .item .tit {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    text-align: center;
}
.kiosk-03-grid .item .tit-sub {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    text-align: center;
}
.bd-grid .item .num {
    font-size: 16px;
    font-weight: 600;
    color: var(--main-color);
    margin-bottom: 12px;
}
.bd-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 72px;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}
.bd-grid .item {
    padding: 72px 36px;
    position: relative;
}
.bd-grid .item .tit {
    font-size: 24px;
    font-weight: 600;
    color: var(--black-color);
    margin-bottom: 16px;
    line-height: 1.3;
}
.bd-grid .item .list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.bd-grid .item .list > div {
    display: block;
    font-size: 16px;
    font-weight: 400;
    color: var(--sub-txt-color-01);
    line-height: 1.3;
    word-break: keep-all;
}
.bd-grid .item .list > div.last {
    padding-left: 12px;
    margin-top: 12px;
}
.bd-grid .item .list > div b {
    font-weight: 700;
    color: var(--black-color);
}
.bd-grid .item .list > div span {
    position: relative;
    font-weight: 700;
    color: var(--black-color);
}
.bd-grid .item .list > div span::after {
    content: "";
    width: 100%;
    height: 10px;
    display: inline-block;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
    background-color: #e6ebff;
}
.bd-grid .item:nth-child(odd)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -40px;
    transform: translateY(-50%);
    width: 1px;
    height: calc(100% - 72px);
    background-color: var(--border-color);
}
.bd-grid .item:first-child, .bd-grid .item:nth-child(2) {
    border-bottom: 1px solid var(--border-color);
}


.kiosk-03 .bt {
    padding-bottom: 80px;
    border-bottom: 1px solid var(--border-color);
}
.bt-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}
.bt-grid .item {
    border-radius: 12px;
    background-color: var(--bg-color);
    padding: 36px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.bt-grid .item .num {
    font-size: 24px;
    font-weight: 600;
    color: var(--black-color);
    margin-bottom: 24px;
}
.bt-grid .item .tit {
    font-size: 16px;
    font-weight: 400;
    color: var(--sub-txt-color-01);
    line-height: 1.3;
    text-align: center;
    word-break: keep-all;
    margin-top: 16px;
}
.kiosk-04 {
    overflow: hidden;
}
.kiosk-04-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
    margin-top: 48px;
}
.kiosk-04-grid .item {
    border-radius: 36px;
    box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.1);
    padding: 36px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 24px;
    position: relative;
    background-color: #fff;
}
.kiosk-04-grid .item:not(:last-child)::after {
    content: "";
    width: 28px;
    height: 28px;
    background-image: url('../images/icons/step_right_arrow.png');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 50%;
    right: -38px;
    transform: translateY(-50%);
}
.kiosk-04-grid .item .txt p:first-child {
    font-size: 24px;
    font-weight: 600;
    color: var(--black-color);
    margin-bottom: 12px;
}
.kiosk-04-grid .item .txt p:nth-child(2) {
    font-size: 16px;
    font-weight: 400;
    color: var(--sub-txt-color-01);
    line-height: 1.3;
    word-break: keep-all;
}
.kiosk-04-grid .item img {
    width: 48px;
    margin: 0 0 0 auto;
}
.pay-slider {
    margin-top: 100px;
    overflow: hidden;
}
.pay-slider .swiper-wrapper {
    transition-timing-function: linear !important;
}
.pay-slider .swiper-slide {
    display: flex;
    align-items: center;
}
.pay-slider .swiper-slide img {
    height: 40px;
    object-fit: contain;
}


.kiosk-05 {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.kiosk-06 {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.kiosk-06 > span {
    padding: 12px 16px;
    background-color: var(--red-color);
    border-radius: 48px;
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    text-align: center;
}

.customer-slider {
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.customer-slider .swiper-slide {
    height: 100%;
}

.price-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-bottom: 36px;
    margin-bottom: 36px;
    border-bottom: 1px solid var(--border-color);
}
.price-info .item {
    display: flex;
    gap: 16px;
}
.price-info .item span:first-child {
    font-size: 14px;
    font-weight: 400;
    color: var(--sub-txt-color-02);
    width: 70px;
}
.price-info .item span:nth-child(2) {
    font-size: 14px;
    font-weight: 400;
    color: var(--black-color);
}


.pay-type {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-bottom: 36px;
    margin-bottom: 36px;
    border-bottom: 1px solid var(--border-color);
}
.pay-type > p {
    font-size: 20px;
    font-weight: 600;
    color: var(--black-color);
}
.pay-type .list {
    display: flex;
    align-items: center;
    gap: 24px;
}
.pay-type .list label {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
}
.pay-type input[type="radio"] {
    width: 16px;
    height: 16px;
    margin: 0;
}
.pay-type label span {
    color: var(--sub-txt-color-01);
}
.pay-type .expl {
    border: 1px solid var(--border-color);
    padding: 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 400;
    color: var(--sub-txt-color-01);
    line-height: 1.3;
    background-color: var(--bg-color);
}
.pay-type .expl b {
    font-weight: 600;
}


.filter-area {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 48px;
    padding: 24px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}
.filter-box {
   display: flex;
   flex-direction: column;
   gap: 8px;
}
.filter-box > p {
    font-size: 14px;
    font-weight: 600;
    color: var(--sub-txt-color-02);
}
.filter-box .box {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px 8px;
}
.filter-box .box a {
    display: inline-block;
    background-color: #fff;
    padding: 6px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--sub-txt-color-01);
    border-radius: 8px;
    border: 1px solid var(--border-color);
}
.filter-box .box a.on {
    background-color: var(--red-color);
    color: #fff;
    border: 1px solid var(--red-color);
}
.filter-box .box a:hover {
    background-color: var(--red-color);
    color: #fff;
    border: 1px solid var(--red-color);
}

.with-slider {
    width: 100%;
    overflow: hidden;
    display: none;
}
.with-slider .swiper-slide .img-box {
    width: 100%;
    aspect-ratio: 3 / 4;
    border-radius: 12px;
    overflow: hidden;
}
.with-slider .swiper-slide .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main-support {
    width: 100%;
    height: 500px;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
}
.main-support .bg {
    width: 100%;
    height: 100%;
}
.main-support .bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.main-support .txt {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.main-mobile {
    display: none;
}



/*b2b렌탈*/
.intro-banner {
    width: 100%;
    height: 100vh;
    position: relative;
}
.intro-banner .bg {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}
.intro-banner .bg::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
}
.intro-banner .bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.intro-banner .content {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1520px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 48px;
}
.intro-banner .content .txt {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.intro-banner .content .txt .main-tit {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    line-height: 1.5;
    margin-bottom: 24px;
    text-align: center;
}
.intro-banner .content .txt .sub-tit {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    line-height: 1.5;
    margin-bottom: 36px;
    text-align: center;
}
.intro-banner .content .txt .intro-link {
    display: flex;
    gap: 8px;
}
.intro-banner .content .txt .intro-link a {
    display: inline-block;
    width: 200px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border: 1px solid var(--border-color);
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    background-color: transparent;
}
.intro-banner .content .txt .intro-link a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.intro-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 0 24px 12px rgba(0, 0, 0, 0.2);
}
.intro-grid .item {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.intro-grid .item .img-box {
    width: 100%;
    height: 100%;
}
.intro-grid .item .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.intro-grid .item > span {
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 16px;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
}


.b2b-about {
    display: flex;
    flex-direction: column;
    gap: 80px;
}
.b2b-about .hd {
    display: flex;
    align-items: stretch;
    gap: 48px;
}
.b2b-about .hd .lt {
    position: relative;
    width: 50%;
}
.b2b-about .hd .lt .bg {
    width: 100%;
    height: 100%;
}
.b2b-about .hd .lt .bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.b2b-about .hd .lt .txt {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 36px;
    font-weight: bold;
    color: #fff;
}
.b2b-about .hd .rt {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 16px 0;
}
.b2b-about .hd .rt p:first-child {
    font-size: 24px;
    font-weight: 700;
    color: var(--black-color);
    line-height: 1.3;
    margin-bottom: 24px;
}
.b2b-about .hd .rt p:last-child {
    font-size: 16px;
    font-weight: 400;
    color: var(--sub-txt-color-02);
    line-height: 1.5;
}
.b2b-about .hd .rt p:last-child b {
    font-weight: 700;
    color: var(--black-color);
}
.b2b-about .bt > p {
    font-size: 36px;
    font-weight: 700;
    color: var(--black-color);
    margin-bottom: 48px;
    text-align: center;
}

.b2b-02 {
    display: flex;
    justify-content: space-between;
    gap: 48px;
    position: relative;
}
.b2b-02 .b2b-02-grid {
    width: 50%;
    gap: 24px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
.b2b-02 .b2b-02-grid .item {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.b2b-02 .b2b-02-grid .item:last-child {
    background-color: var(--bg-color);
    padding: 24px;
    border-radius: 24px;
}
.b2b-02 .b2b-02-grid .item .bg {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 24px;
    overflow: hidden;
}
.b2b-02 .b2b-02-grid .item .bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.b2b-02 .b2b-02-grid .item .txt {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    padding: 48px 36px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.b2b-02 .b2b-02-grid .item .txt p:first-child {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
}
.b2b-02 .b2b-02-grid .item .txt p:nth-child(2) {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    line-height: 1.5;
    word-break: keep-all;
}

.b2b-03-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.b2b-03-grid .item {
    background-color: #fff;
    box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.15);
    border-radius: 24px;
    padding: 60px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.b2b-03-grid .item .icon {
    width: 80px;
    height: 80px;
    background-color: var(--bg-color);
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}
.b2b-03-grid .item .icon img {
    width: 36px;
    height: 36px;
}
.b2b-03-grid .item .txt {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
.b2b-03-grid .item .txt p:first-child {
    font-size: 24px;
    font-weight: 600;
    color: var(--black-color);
    text-align: center;
    line-height: 1.3;
    word-break: keep-all;
}
.b2b-03-grid .item .txt p:nth-child(2) {
    font-size: 16px;
    font-weight: 400;
    color: var(--sub-txt-color-01);
    text-align: center;
    line-height: 1.5;
    word-break: keep-all;
}

.b2b-03-point {
    width: max-content;
    background-color: var(--sub-color);
    padding: 24px 48px;
    border-radius: 24px;
    font-size: 24px;
    font-weight: 400;
    color: #fff;
    line-height: 1.3;
    text-align: center;
    margin: 60px auto 0;
}
.b2b-03-point b {
    font-weight: 700;
}

.b2b-04-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-bottom: 60px;
}
.b2b-04-grid .item {
    border-radius: 24px;
    padding: 24px;
    box-shadow: 4px 4px 24px 0 rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.b2b-04-grid .item > p {
    font-size: 24px;
    font-weight: 600;
    color: var(--black-color);
    line-height: 1.3;
    word-break: keep-all;
    margin-bottom: 36px;
}
.b2b-04-grid .item .icon {
    margin: 0 0 0 auto;
}
.b2b-04-grid .item .icon img {
    width: 48px;
    height: 48px;
}

.b2b-link {
    display: flex;
    justify-content: center;
}
.b2b-link a {
    padding: 16px 48px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    background-color: var(--sub-color);
    border-radius: 48px;
}
.b2b-link a:hover {
    opacity: .8;
}
.b2b-06 {
    display: flex;
    justify-content: space-between;
    gap: 48px;
}
.b2b-06-grid {
    width: 50%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.b2b-06-grid .item {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.b2b-06-grid .item:last-child {
    padding-top: 220px;
}
.b2b-06-grid .item .grid-box {
    border-radius: 24px;
    overflow: hidden;
    position: relative;
}
.b2b-06-grid .item .grid-box .bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.b2b-06-grid .item .grid-box .bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.b2b-06-grid .item .grid-box .txt {
    position: absolute;
    left: 16px;
    bottom: 16px;
    width: calc(100% - 32px);
    background-color: rgba(0, 0, 0, 0.5);
    padding: 24px;
    border-radius: 16px;
}
.b2b-06-grid .item .grid-box .txt p:first-child {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    word-break: keep-all;
    line-height: 1.5;
}
.b2b-06-grid .item .grid-box .txt p:first-child span {
    color: var(--sub-color);
}
.b2b-06-grid .item .grid-box .txt p:nth-child(2) {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    word-break: keep-all;
    line-height: 1.5;
}

.partner-slider .swiper-wrapper {
    transition-timing-function: linear !important;
}
.partner-slider .img-box {
    width: 100%;
    aspect-ratio: 1 / 1;
    padding: 80px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    border-radius: 12px;
}
.partner-slider .img-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.b2b-08-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}
.b2b-08-grid .item {
    width: 100%;
    position: relative
}
.b2b-08-grid .item .bg {
    width: 100%;
    aspect-ratio: 3 / 4;
    border-radius: 24px;
    overflow: hidden;
}
.b2b-08-grid .item .bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.b2b-08-grid .item .txt {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 24px;
}
.b2b-08-grid .item .txt p:first-child {
    font-size: 14px;
    font-weight: 700;
    color: var(--sub-color);
    margin-bottom: 6px;
}
.b2b-08-grid .item .txt p:nth-child(2) {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    line-height: 1.5;
    word-break: keep-all;
}
.wc-link {
    display: flex;
    gap: 8px;
    margin-top: 60px;
}
.wc-link a {
    display: inline-block;
    width: 200px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border: 1px solid #fff;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    background-color: transparent;
}
.wc-link a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.b2b-09 {
    display: flex;
    flex-direction: column;
    gap: 100px;
}
.b2b-09 .item {
    position: relative;
    width: 100%;
    height: 700px;
    overflow: hidden;
}
.b2b-09 .item .bg {
    width: 100%;
    height: 100%;
}
.b2b-09 .item .bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.b2b-09 .item .txt {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
}
.b2b-09 .item .txt .tit {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}
.b2b-09 .item .txt .tit-sub {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    line-height: 1.5;
    margin-top: 24px;
}



/*상품 주문페이지*/
.order-form {
    display: flex;
    flex-direction: column;
    gap: 48px;
    border-left: 1px solid var(--border-color);
    padding-left: 36px;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}
.order-form .block {
    position: relative;
}
.order-form .block > p {
    font-size: 20px;
    font-weight: 600;
    color: var(--black-color);
    margin-bottom: 24px;
}
.order-form .block::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: -48px;
    width: 24px;
    height: 24px;
    background-image: url('../images/icons/order_circle.png');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}
.order-box {
    display: flex;
    flex-direction: column;
    padding: 24px;
    border-radius: 12px;
    background-color: var(--bg-color);
}
.order-box .radio-box {
    display: flex;
    align-items: center;
    gap: 36px;
}
.order-box .radio-box label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 16px;
    font-weight: 400;
    color: var(--sub-txt-color-01);
    cursor: pointer;
}
.order-box .radio-box label input[type="radio"] {
    width: 16px;
    height: 16px;
    margin: 0;
    cursor: pointer;
}
.order-box .item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px 0;
}
.order-box .item:not(:last-child) {
    border-bottom: 1px dashed var(--border-color);
}
.order-box .item .tit {
    display: inline-block;
    min-width: 160px;
    font-size: 14px;
    font-weight: 400;
    color: var(--sub-txt-color-02);
}
.order-box .item .tit.bold {
    font-weight: 700;
    color: var(--black-color);
}
.order-box .item .tit b {
    font-weight: 600;
    color: var(--sub-color);
}
.order-box .item input[type="checkbox"] {
    margin: 0;
    cursor: pointer;
    width: 16px;
    height: 16px;
}
.order-box .item .content {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
}
.order-box .item .txt-input {
    display: flex;
    height: 50px;
}
.order-box .item .txt-input input[type="text"] {
    text-align: right;
    width: 100px;
}
.order-box .item input[type="text"] {
    width: 50%;
    height: 50px;
    padding: 0 16px;
    background-color: #fff;
    border: 1px solid var(--border-color);
}
.order-box .item .txt-input > span {
    width: 36px;
    height: 50px;
    background-color: #F5F5F5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 400;
    color: var(--black-color);
    border: 1px solid var(--border-color);
    border-left: none;
}

.place-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 8px;
}
.place-grid .box {
    width: 100%;
    background-color: #fff;
    border-radius: 16px;
    padding: 16px;
}
.place-grid .box > p {
    font-size: 14px;
    font-weight: 400;
    color: var(--sub-txt-color-02);
    margin-bottom: 8px;
}

.order-box .item .content .date-box {
    width: 50%;
    background-color: #fff;
    position: relative;
    border: 1px solid var(--border-color);
}
.order-box .item .content .date-box img {
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
}
.order-box .item .content .date-box input {
    width: 100%;
    border: none;
    padding-right: 36px;
}
.order-box .item .content .input-box {
    width: 100%;
}
.order-box .item .content .input-box .expl {
    display: block;
    font-size: 14px;
    font-weight: 400;
    color: var(--black-color);
    line-height: 1.5;
    word-break: normal;
    background-color: #fff;
    padding: 6px;
    border-radius: 4px;
    margin-top: 6px;
}
.order-box .item .content .input-box .expl b {
    font-weight: 700;
    color: var(--sub-color);
}
.order-box .item .content select {
    width: 50%;
    height: 50px;
    padding: 0 16px;
    background-color: #fff;
    border: 1px solid var(--border-color);
    font-size: 14px;
    font-weight: 500;
    color: var(--sub-txt-color-01);
}
.order-box .item .content textarea {
    width: 100%;
    height: 150px;
    padding: 16px;
    background-color: #fff;
    border: 1px solid var(--border-color);
    font-size: 14px;
    font-weight: 500;
    color: var(--sub-txt-color-01);
    resize: none;
}
.address-box {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}
.address-box input[type="text"] {
    width: 100% !important;
}
.address-box input[type="text"]:read-only {
    background-color: #F5F5F5;
}
.address-box button {
    width: 120px;
    height: 50px;
    background-color: var(--sub-color);
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    text-align: center;
}
.address-box button:hover {
    opacity: 0.8;
}

.pay-info {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.order-box .item .content .price {
    font-size: 16px;
    font-weight: 600;
    color: var(--black-color);
}
.order-box .item .content .price b {
    font-size: 24px;
    font-weight: 700;
    color: var(--sub-color);
    margin-right: 6px;
}
.order-terms {
    display: flex;
    align-items: center;
    gap: 24px;
}
.order-terms label {
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: var(--black-color);
    display: flex;
    align-items: center;
}
.order-terms label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin: 0 6px 0 0 !important;
}
.order-terms label span {
    color: var(--sub-color);
}
.order-terms a {
    font-size: 16px;
    font-weight: 600;
    color: var(--black-color);
    text-decoration: underline;
    cursor: pointer;
}
.order-terms a:hover {
    color: var(--sub-txt-color-03);
}
.ac-form {
    display: flex;
    flex-direction: column;
    gap: 48px;
}
.kiosk-form {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.terms-txt {
    font-family: inherit !important;
    padding: 48px;
    border: 1px solid var(--border-color);
    border-radius: 24px;
    white-space: pre-line;
    color: var(--sub-txt-color-01)
}