:root {
    --main-color: #55504C;
    --sub-color: #EEECE0;
    --bg-color: #F9F9F9;
    --black-color: #1A1A1A;
    --sub-txt-color-01: #555555;
    --sub-txt-color-02: #777777;
    --sub-txt-color-03: #999999;
    --border-color: #EEEEEE;
    --red-color: #cf3a3a;
}
* {
  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;
}
/*seo*/
.sr-only {
  position:absolute;
  width:1px;
  height:1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
}

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

/*공통*/
.wrap {
    width: 100%;
    max-width: 1520px;
    margin: 0 auto;
}
.sm-wrap {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.top-btn {
  width: 48px;
  height: 48px;
  border: 1px solid #fff;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 98;
}
.top-btn img {
  width: 20px;
  height: 20px;
}
.btn-wrap {
    display: flex;
    justify-content: center;
    gap: 8px;
}
.btn-wrap.mt-36 {
    margin-top: 36px;
}
.btn-wrap.gap {
    margin-top: 16px;
    justify-content: flex-end;
}
.btn {
    width: 100%;
    max-width: 250px;
    height: 50px !important;
    line-height: unset !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px !important;
    font-weight: 500 !important;
    border-radius: 4px;
    cursor: pointer;
}
.btn.xs-btn {
    max-width: 100px;
}
.btn.lg-btn {
    max-width: 100%;
}
.btn.solid-btn {
    background-color: var(--main-color);
    color: #fff;
}
.btn.solid-btn:hover {
    opacity: .9;
}
.btn.basic-btn {
    border: 1px solid var(--main-color);
    background-color: #fff;
    color: var(--main-color);
}
.btn.basic-btn:hover {
    background-color: var(--bg-color);
}
/*header*/
.mbg {
    background-color: var(--main-color);
}
.bbg {
    background-color: var(--black-color);
}
.ham {
    display: none;
}
#ham_btn {
    display: none;
}
#ham_btn + label {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: 42px;
  height: 26px;
  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;
}
#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%);
  width: 50%;
}
#ham_btn:checked + label > span:nth-child(2) {
  opacity: 0;
}
#ham_btn + label > span:nth-child(3) {
  bottom: 0;
}
#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: 10;
    width: 100%;
    background-color: var(--main-color);
}
.header-wrap .logo {
    width: 150px;
    display: block;
    position: absolute;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}
.logo {
    width: 200px;
}
.logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.header-wrap .tp {
    width: 100%;
    max-width: 1520px;
    height: 60px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.header-search {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #fff;
    padding-bottom: 4px;
}
.header-search input {
    width: 170px;
    border: none;
    background-color: transparent;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
}
.header-search input::placeholder {
    color: #fff;
}
.header-search input:focus {
    outline: none !important;
    border: none !important;
    box-shadow: unset !important;
}
.header-search img {
    width: 16px;
}
.user-btn {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 24px;
}
.user-btn a, .user-btn div {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    position: relative;
    cursor: pointer;
}
.user-btn .mp-btn .sub-menu {
    position: absolute;
    top: calc(100% - 8px);
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    background-color: #7a746e;
    padding: 12px 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    border-radius: 3px;
    display: none;
}
.user-btn .mp-btn:hover .sub-menu {
    display: flex;
}
.user-btn .mp-btn .sub-menu a {
    white-space: nowrap;
}
.user-btn .mp-btn .sub-menu a:hover {
    color: #aaa;
}
.user-btn a img, .user-btn div img {
    width: 20px;
    height: 20px;
}
.user-btn a .cart-num {
    position: relative;
}
.user-btn a .cart-num .num {
    position: absolute;
    top: calc(50% - 6px);
    right: -6px;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--red-color);
    font-size: 12px;
    font-weight: 400;
    color: #fff;
}
.gnb-area {
    width: 100%;
    max-width: 1520px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.gnb-area > ul {
    display: flex;
    gap: 36px;
}
.gnb-area > ul > li {
    position: relative;
}
.gnb-area > ul > li > a {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 24px 0;
    font-size: 16px;
    font-weight: 400;
    color: #fff;
}
.gnb-area > ul > li > a img {
    width: 14px;
}
.gnb-sub {
    position: absolute;
    top: calc(100% - 8px);
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--main-color);
    border-radius: 3px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    display: none;
}
.gnb-area > ul > li:hover .gnb-sub {
    display: flex;
}
.gnb-sub li a {
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    text-align: center;
    white-space: nowrap;
}
.gnb-sub li a:hover {
    color: #aaa;
}
/*footer*/
footer {
    background-color: var(--main-color);
}
.footer-wrap {
    padding: 60px 0;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 24px;
}
.footer-wrap .lt {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 48px;
}
.footer-wrap .lt .hd {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.footer-wrap .lt .hd .info {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 24px;
}
.footer-wrap .lt .hd .info span {
    font-size: 14px;
    font-weight: 400;
    color: #fff;
}
.footer-wrap .lt .bt {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.footer-wrap .lt .bt span {
    width: max-content;
    padding: 8px 24px;
    border: 1px solid var(--border-color);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 400;
    color: #fff;
}
.footer-wrap .lt .bt a {
    font-size: 38px;
    font-weight: 700;
    color: #fff;
}
.footer-wrap .lt .bt p {
    font-size: 14px;
    font-weight: 400;
    color: #fff;
}
.footer-wrap .rt {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
}
.footer-wrap .rt .hd {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 36px;
}
.footer-wrap .rt .hd .fnb {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 16px;
}
.footer-wrap .rt .hd .fnb li a {
    font-size: 14px;
    font-weight: 400;
    color: #fff;
}
.footer-wrap .rt .hd .fnb li a:hover {
    color: #aaa;
}
.footer-wrap .rt .hd .copy {
    font-size: 14px;
    font-weight: 400;
    color: #fff;
}
/*메인*/
.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%;
    position: relative;
}
.banner-slider .swiper-slide .img-box::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,rgba(26, 26, 26, 1) 0%, rgba(26, 26, 26, 0) 100%);
}
.banner-slider .swiper-slide .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    vertical-align: bottom;
}
.main-banner .txt {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    padding: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}
.main-banner .txt p:first-child {
    font-size: 58px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    text-align: center;
}
.main-banner .txt p:last-child {
    font-size: 20px;
    font-weight: 400;
    color: #fff;
    text-align: center;
    line-height: 1.3;
}
.pager {
    position: absolute;
    top: unset;
    right: unset;
    left: 50% !important;
    bottom: 100px !important;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    justify-content: center;
}
.pager .swiper-pagination-bullet {
    width: 16px;
    height: 16px;
    border-radius: 100%;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    background-color: transparent !important;
    opacity: 1 !important;
}
.pager .swiper-pagination-bullet-active {
    border: 2px solid rgba(255, 255, 255, 1) !important;
    opacity: 1 !important;
}
/*scroll down*/
.scroll-down {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  z-index: 1;
}
.scroll-down .scroll-arrow {
  padding-top: 80px;
  position: relative;
}
.scroll-down .scroll-arrow span {
  position: absolute;
  top: 0;
  left: 50%;
  width: 14px;
  height: 14px;
  margin-left: -7px;
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-animation: scroll_arorw 2s infinite;
  animation: scroll_arorw 2s infinite;
  opacity: 0;
  box-sizing: border-box;
}
.scroll-down .scroll-arrow span:nth-of-type(1) {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}
.scroll-down .scroll-arrow span:nth-of-type(2) {
  top: 12px;
  -webkit-animation-delay: .15s;
  animation-delay: .15s;
}
.scroll-down .scroll-arrow span:nth-of-type(3) {
  top: 24px;
  -webkit-animation-delay: .3s;
  animation-delay: .3s;
}
@-webkit-keyframes scroll_arorw {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes scroll_arorw {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.main-area {
    display: flex;
    flex-direction: column;
    gap: 200px;
    padding: 200px 0 0;
}
.main-area .box {
    display: flex;
    flex-direction: column;
    gap: 100px;;
}
.main-area .box .wrap {
    display: flex;
    flex-direction: column;
    gap: 48px;
}
.main-area .box .wrap > p {
    font-size: 16px;
    font-weight: 400;
    color: var(--sub-txt-color-01);
}
.main-area .box .wrap > p b {
    font-size: 36px;
    font-weight: 700;
    color: var(--main-color);
    margin-right: 24px;
}
.product-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px 24px;
}
.product-list .item {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}
.product-list .item.empty {
    grid-column: span 4;
    border: none;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 24px;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    color: var(--main-color);
    border-radius: 0;
}
.product-list .item.empty:hover {
    border: none;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}
.product-list .item:hover {
    border: 1px solid var(--main-color);
}
.product-list .item .img-box {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}
.product-list .item .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.product-list .item .txt {
    padding: 24px 16px;
}
.product-list .item .txt > img {
    height: 20px;
    margin-bottom: 12px;
}
.product-list .item .txt .name {
    font-size: 20px;
    font-weight: 700;
    color: var(--main-color);
    margin-bottom: 16px;
}
.product-list .item .txt .expl {
    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: 3;
    -webkit-box-orient: vertical;
    margin-bottom: 24px;
}
.product-list .item .txt .bt {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.product-list .item .txt .bt .price {
    font-size: 24px;
    font-weight: 700;
    color: var(--main-color);
}
.wish-btn {
    position: relative;
    width: 24px;   /* 이미지 사이즈 맞게 */
    height: 24px;
    border: none;
    background: none;
    padding: 0;
    cursor: pointer;
}

/* 두 이미지를 겹침 */
.wish-btn img {
    width: 24px;
    height: 24px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: opacity 0.2s ease;
}
/* 기본 상태 */
.wish-after {
    opacity: 0;
}
/* active 되면 */
.wish-btn.active .wish-before {
    opacity: 0;
}
.wish-btn.active .wish-after {
    opacity: 1;
}
.ad-banner {
    width: 100%;
    height: 600px;
    overflow: hidden;
    position: relative;
}
.ad-banner .bg {
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.ad-banner .bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ad-banner .txt {
    width: 100%;
    max-width: 1520px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.ad-banner .txt p:first-child {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 24px;
}
.ad-banner .txt p:last-child {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    line-height: 1.3;
}
/*pages*/
.sub-banner {
    position: relative;
    width: 100%;
    height: 600px;
}
.sub-banner .bg {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}
.sub-banner .bg::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.2);
}
.sub-banner .bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.sub-banner .txt {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 58px;
    font-weight: 700;
    color: #fff;
}
.page-area {
    padding: 150px 0 200px;
}
.product .page-tit {
    font-size: 36px;
    font-weight: 700;
    color: var(--main-color);
    margin-bottom: 36px;
}
.product .page-tit b {
    color: var(--red-color);
}
.product .category {
    border-top: 2px solid var(--main-color);
    border-bottom: 1px solid var(--border-color);
    padding: 16px 0;
    margin-bottom: 24px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px 0;
    background-color: var(--bg-color);
}
.product .category a {
    display: inline-block;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 400;
    color: var(--sub-txt-color-03);
}
.product .category a.on {
    font-weight: 500;
    color: var(--main-color);
}
.product .category a:hover {
    font-weight: 500;
    color: var(--main-color);
}
.product .category a:not(:last-child) {
    border-right: 1px solid var(--border-color);
}
.product .filter {
    padding: 16px 0;
    background-color: var(--bg-color);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 48px;
}
.product .filter a {
    padding: 4px 16px;
    font-size: 14px;
    font-weight: 400;
    color: var(--sub-txt-color-03);
}
.product .filter a.on {
    font-weight: 500;
    color: var(--main-color);
}
.product .filter a:hover {
    font-weight: 500;
    color: var(--main-color);
}
.product .filter a:not(:last-child) {
    border-right: 1px solid var(--border-color);
}
/*Pagination*/
.pagination {
  position: relative;
  margin-top: 48px;
}
.pagination.mt-24 {
    margin-top: 24px;
}
.pagination > a {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.pagination ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.pagination li {
  width: 28px;
  height: 28px;
}
.pagination li a {
  width: 100%;
  height: 100%;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  color: var(--sub-txt-color-02);
}
.pagination li a:not(.arrow):hover {
    color: var(--main-color);
    text-decoration: underline;
}
.pagination li.on {
    color: var(--main-color);
    text-decoration: underline;
}
.pagination li.on a {
    color: var(--main-color);
    text-decoration: underline;
}
.pagination li a img {
  height: 10px;
  object-fit: cover;
}
.product-tp {
    display: flex;
    gap: 48px;
    margin-bottom: 60px;
}
.product-tp .lt {
    width: 500px;
}
.product-tp .rt {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 36px;
}
.product-tp .rt .rt-tit {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.product-tp .rt .rt-tit p:first-child {
    font-size: 28px;
    font-weight: 600;
    color: var(--main-color);
    line-height: 1.3;
}
.product-tp .rt .rt-tit p:nth-child(2) {
    font-weight: 400;
    color: var(--sub-txt-color-02);
    line-height: 1.3;
    word-break: keep-all;
}
.rt-price {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.rt-price .item {
    display: flex;
    justify-content: space-between;
}
.rt-price .item .pa {
    display: flex;
    align-items: center;
    gap: 12px;
}
.rt-price .item .pa span:first-child {
    font-size: 14px;
    font-weight: 500;
    color: var(--sub-txt-color-02);
    min-width: 80px;
    display: inline-block;
}
.rt-price .item .pa span:nth-child(2) {
    font-size: 18px;
    font-weight: 500;
    color: var(--black-color);
}
.rt-price .item .pa span:nth-child(2).hp {
    text-decoration: line-through;
    color: var(--sub-txt-color-03);
}
.rt-price .item .pa span:nth-child(2) b {
    font-size: 14px;
    color: var(--black-color);
}
.rt-price .item .pa span:nth-child(2).hp b {
    color: var(--sub-txt-color-03);
}
.rt-price .item .pa span:nth-child(2) .sale {
    color: var(--sub-color);
    margin-left: 12px;
}
.rt-price .item .pa span:nth-child(2).mc-txt {
    color: var(--main-color);
}
.rt-price .item .cp-download {
    font-size: 12px;
    font-weight: 400;
    color: #fff;
    letter-spacing: -1px;
    border-radius: 3px;
    padding: 5px 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    background-color: var(--black-color);
}
.rt-price .item .cp-download img {
    width: 12px;
}

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


.post-slider {
    width: 100%;
    overflow: hidden;
    margin-bottom: 12px;
    position: relative;
    border: 1px solid var(--border-color);
}
.product-pager {
    width: 60px;
    position: absolute;
    top: 16px !important;
    left: 16px !important;
    right: unset !important;
    bottom: unset !important;
    z-index: 2;
    background-color: rgba(0, 0, 0, 0.5);
    display: block !important;
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    border-radius: 48px;
    text-align: center;
    padding: 4px 0;
}
.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;
    border: 1px solid var(--border-color);
}
.thumbnail-slider .swiper-slide .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.product-bt {
    position: relative;
}
.product-bt .tab-menu {
    display: flex;
    margin-bottom: 60px;
    position: sticky;
    top: 127px;
    left: 0;
}
.product-bt .tab-menu button, .product-bt .tab-menu a {
    width: 100%;
    height: 60px;
    line-height: 60px;
    text-align: center;
    background-color: var(--bg-color);
    margin-left: -1px;
    border: 1px solid var(--border-color);
    font-weight: 400;
    color: var(--sub-txt-color-03);
}
.product-bt .tab-menu button.on, .product-bt .tab-menu a.on {
    background-color: #fff;
    color: var(--black-color);
    border-bottom: 3px solid var(--main-color);
} 
.product-bt .product-content .editor-area {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    margin-bottom: 60px;
}
.product-bt .product-content .editor-area video {
    width: 100%;
    aspect-ratio: 16 / 9 !important;
    object-fit: contain;
}
.product-bt .product-content .editor-area iframe {
    width: 100% !important;
    aspect-ratio: 16 / 9 !important;
}
.product-bt .product-content {
    display: none;
}
.product-bt .product-content.on {
    display: block;
}
.product-bt .product-content .product-expl-table {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
}
.product-expl-table table {
    width: 100%;
    border-top: 2px solid var(--black-color) !important;
    border-bottom: 1px solid var(--border-color);
    border-collapse: collapse !important;
}
.product-expl-table table th {
    background-color: var(--bg-color);
    text-align: left;
    padding: 16px;
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
    color: var(--black-color);
    line-height: 1.3;
}
.product-expl-table table td {
    text-align: left;
    padding: 16px;
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
    color: var(--sub-txt-color-02);
    line-height: 1.3;
}


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

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

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

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


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


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

}
.support-list > li .tit-box .info button {
    font-size: 12px;
    font-weight: 400;
    color: var(--sub-txt-color-02);
    padding: 2px 10px;
    border-radius: 3px;
    border: 1px solid var(--border-color);
}
.support-list > li .tit-box .info button:hover {
    background-color: var(--bg-color);
}
.product-wish {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    min-width: 50px;
    border: 1px solid var(--main-color);
    border-radius: 4px;
}
.product-wish img {
    width: 24px;
    height: 24px;
}

.product-wish .wish-after {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.2s ease;
}
.product-wish.active .wish-after {
    opacity: 1;
}
.product-wish.active .wish-before {
    opacity: 0;
}
.naver-pay-wrap {
    margin-top: 16px;
}
.basic-area {
    padding: 250px 0 200px;
}
.basic-tit {
    margin-bottom: 48px;
    padding-bottom: 16px;
    font-size: 38px;
    font-weight: 600;
    color: var(--black-color);
    text-align: center;
    position: relative;
}
.basic-tit::after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background-color: var(--black-color);
}
.order-table table {
    width: 100%;
    border-top: 2px solid var(--black-color) !important;
    border-bottom: 1px solid var(--border-color);
    border-collapse: collapse !important;
}
.order-table table th {
    vertical-align: middle;
    background-color: var(--bg-color);
    padding: 16px;
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
    color: var(--black-color);
    line-height: 1.3;
}
.order-table table th .order-type {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    position: relative;
    cursor: pointer;
}
.order-table table th .order-type img {
    width: 16px;
}
.order-table table input[type="checkbox"] {
    cursor: pointer;
    width: 16px;
    height: 16px;
    margin: 0;
}
.order-table table td {
    vertical-align: middle;
    text-align: center;
    padding: 16px;
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
    color: var(--sub-txt-color-02);
    line-height: 1.3;
}
.order-table table td a {
    font-weight: 500;
    color: var(--black-color);
}
.order-table table td a:hover {
    text-decoration: underline;
}
.badge {
    display: inline-block;
    border-radius: 3px;
    padding: 4px 5px;
    font-size: 12px;
    font-weight: 500;
}
.badge.status-01 {
    color: #2D6712;
    background-color: #B0D29F;
}
.badge.status-02 {
    color: #fff;
    background-color: #6DA752;
}
.badge.status-03 {
    color: #fff;
    background-color: #689CD6;
}
.badge.status-04 {
    color: #0F57A7;
    background-color: #90BCEB;
}
.badge.status-05 {
    color: #F2095A;
    background-color: #FFD9D8;
}
.badge.status-06 {
    color: #fff;
    background-color: #F00B5D;
}
.order-table table {
    width: 100%;
    border-top: 2px solid var(--black-color) !important;
    border-bottom: 1px solid var(--border-color);
    border-collapse: collapse !important;
}
.order-table table th {
    vertical-align: middle;
    background-color: var(--bg-color);
    padding: 16px;
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
    color: var(--black-color);
    line-height: 1.3;
}
.order-table table th .order-type {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    position: relative;
    cursor: pointer;
}
.order-table table th .order-type img {
    width: 16px;
}
.order-table table input[type="checkbox"] {
    cursor: pointer;
    width: 16px;
    height: 16px;
    margin: 0;
}
.order-table table td {
    vertical-align: middle;
    text-align: center;
    padding: 16px;
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
    color: var(--sub-txt-color-02);
    line-height: 1.3;
}
.order-table table td a {
    font-weight: 500;
    color: var(--black-color);
}
.order-table table td a:hover {
    text-decoration: underline;
}
.ballon {
    display: none;
    position: absolute;
    right: 0;
    z-index: 2;
    bottom: calc(100% + 12px);
    background: rgba(0, 0, 0, 0.8);
    font-size: 12px;
    font-weight: 400;
    color: #fff;
    line-height: 1.3;
    text-align: left;
    border-radius: 4px;
    padding: 12px;
    white-space: nowrap;
}
.ballon::after {
    border-top: 6px solid rgba(0, 0, 0, 0.8);
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 0px solid transparent;
    content: "";
    position: absolute;
    bottom: -5px;
    right: 48px;
}
.ballon .ballon-item {
    display: flex;
    gap: 16px;
}
.ballon .ballon-item:not(:last-child) {
    margin-bottom: 6px;
}
.ballon .ballon-item span:first-child {
    font-weight: 500;
}
.order-table table th .order-type:hover .ballon {
    display: block;
}

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

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

.price-box {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-color);
}
.price-box .tp {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    border-bottom: 1px solid var(--border-color);
}
.price-box .tp .box {
    display: flex;
    justify-content: space-between;
}
.price-box .tp .box span {
    font-size: 14px;
    font-weight: 400;
    color: var(--sub-txt-color-02);
    line-height: 1.3;
}
.price-box .tp .box span b {
    color: var(--main-color);
}
.price-box .tp .box span:first-child {
    font-weight: 500;
    color: var(--black-color);
}
.price-box .bt .box {
    background-color: var(--bg-color);
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
}
.price-box .bt .box:not(:last-child) {
    border-bottom: 1px solid var(--border-color);
}
.price-box .bt .box span {
    font-size: 14px;
    font-weight: 500;
    color: var(--black-color);
    line-height: 1.3;
    position: relative;
    display: flex;
    align-items: center;
}
.price-box .bt .box span input {
    border: 1px solid var(--border-color);
    padding: 6px 8px;
    border-radius: 3px;
}
.price-box .bt .box span:first-child {
    font-weight: 500;
    color: var(--black-color);
}
.simple-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 24px;
}
.simple-info .item {
    padding: 24px;
    display: flex;
    justify-content: space-between;
    border: 1px solid var(--border-color);
    margin-left: -1px;
}
.simple-info .item.bg {
    background-color: var(--bg-color);
}
.simple-info .item span {
    display: inline-block;
    color: var(--sub-txt-color-02);
}
.simple-info .item span b {
    font-weight: 500;
    color: var(--black-color);
}
.radio-item {
    width: 100%;
    display: flex;
    gap: 8px;
}
.radio-item label {
    cursor: pointer;
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    outline: 1px solid var(--border-color);
    border-radius: 3px;
    font-size: 14px;
    color: var(--black-color);
}
.radio-item label img {
    width: 18px;
}
.radio-item input[type="radio"] {
    display: none;
}
.radio-item input[type="radio"]:checked + label {
    outline: 1px solid var(--black-color);
}
.input-db {
    width: 100%;
    display: flex;
    gap: 8px;
}
.add-box {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.add-box .input-box {
    width: 100%;
    margin-top: 0;
}
.sm-btn-wrap {
    padding: 24px 0;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 24px;
}
.sm-btn-wrap button {
    font-size: 12px;
    font-weight: 400;
    color: var(--sub-txt-color-02);
    padding: 2px 10px;
    border-radius: 3px;
    border: 1px solid var(--border-color);
}
.sm-btn-wrap button:hover {
    background-color: var(--bg-color);
}
.terms-item {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 48px;
}
.terms-item caption {
    padding: 16px;
}
.terms-item table {
    width: 100%;
    border-top: 2px solid var(--black-color) !important;
    border-bottom: 1px solid var(--border-color);
    border-collapse: collapse !important;
}
.terms-item table th {
    background-color: var(--bg-color);
    text-align: left;
    padding: 16px;
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
    color: var(--black-color);
    line-height: 1.3;
    text-align: center;
}
.terms-item table td {
    text-align: left;
    padding: 16px;
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
    color: var(--sub-txt-color-02);
    line-height: 1.3;
    text-align: center;
}
.terms-item > p {
    font-size: 16px;
    font-weight: 500;
    color: var(--black-color);
    padding-bottom: 12px;
    border-bottom: 1px solid var(--black-color);
    margin-bottom: 12px;
}
.terms-item .content {
    padding: 24px;
    line-height: 1.3;
    background-color: var(--bg-color);
    border-radius: 3px;
    height: 150px;
    overflow: hidden;
    overflow-y: auto;
    font-size: 14px;
    color: var(--sub-txt-color-02);
}
.terms-item label {
    display: flex;
    align-items: center;
    cursor: pointer;
    gap: 6px;
}
.terms-item label input {
    width: 16px;
    height: 16px;
    margin: 0;
    cursor: pointer;
}
.terms-item label span {
    display: inline-block;
    font-size: 14px;
    font-weight: 400;
    color: var(--black-color);
}
.terms-expl {
    padding: 24px;
    background-color: var(--bg-color);
    border-radius: 3px;
    list-style-type: disc;
    padding-left: 48px;
    margin-bottom: 48px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.terms-expl.mb-0 {
    margin-bottom: 0;
}
.terms-expl li {
    font-size: 14px;
    font-weight: 400;
    color: var(--sub-txt-color-02);
    line-height: 1.3;
    word-break: keep-all;
}
.mypage-tab {
    display: flex;
    margin-bottom: 60px;
    position: sticky;
    top: 85px;
    left: 0;
}
.mypage-tab button, .mypage-tab a {
    width: 100%;
    height: 60px;
    line-height: 60px;
    text-align: center;
    background-color: var(--bg-color);
    margin-left: -1px;
    border: 1px solid var(--border-color);
    font-weight: 400;
    color: var(--sub-txt-color-03);
}
.mypage-tab button.on, .mypage-tab a.on {
    background-color: #fff;
    color: var(--black-color);
    border-bottom: 3px solid var(--main-color);
}
.terms-area {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
}
.terms-expl {
    padding: 24px;
    background-color: var(--bg-color);
    border-radius: 3px;
    list-style-type: disc;
    padding-left: 48px;
    margin-bottom: 48px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.terms-expl.mb-0 {
    margin-bottom: 0;
}
.terms-expl li {
    font-size: 14px;
    font-weight: 400;
    color: var(--sub-txt-color-02);
    line-height: 1.3;
    word-break: keep-all;
}
.terms-item {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}
.terms-item > p {
    font-size: 16px;
    font-weight: 500;
    color: var(--black-color);
    padding-bottom: 12px;
    border-bottom: 1px solid var(--black-color);
    margin-bottom: 12px;
}
.terms-item .content {
    padding: 24px;
    line-height: 1.3;
    background-color: var(--bg-color);
    border-radius: 3px;
    height: 150px;
    overflow: hidden;
    overflow-y: auto;
    font-size: 14px;
    color: var(--sub-txt-color-02);
}
.terms-item label {
    display: flex;
    align-items: center;
    cursor: pointer;
    gap: 6px;
}
.terms-item label input {
    width: 16px;
    height: 16px;
    margin: 0;
}
.terms-item label span {
    display: inline-block;
    font-size: 14px;
    font-weight: 400;
    color: var(--black-color);
}

.all-agree {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    background-color: var(--bg-color);
    padding: 24px;
    margin-bottom: 24px;
}
.all-agree span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 400;
    color: var(--sub-txt-color-02);
}
.all-agree span::before {
    display: inline-block;
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 100%;
    background-color: var(--sub-txt-color-03);
    margin-right: 4px;
}
.all-agree input {
    width: 16px;
    height: 16px;
    background-color: var(--bg-color);
    padding: 24px;
    cursor: pointer;
}

.add-box {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.done-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    background-color: var(--bg-color);
    padding: 48px;
    border-radius: 3px;
    margin-bottom: 24px;
}
.done-box > img {
    width: 180px;
    margin-bottom: 24px;
}
.done-box p {
    color: var(--black-color);
    line-height: 1.3;
}
.login-area {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}
.input-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 16px;
}
.input-box {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.input-box > p {
    font-size: 14px;
    font-weight: 400;
    color: var(--sub-txt-color-03);
}
.input-box > p span {
    color: var(--red-color);
}
.input-box > p.st::after {
    content: "*";
    display: inline-block;
    color: var(--red-color);
    margin-left: 4px;
}
.input-box input[type="text"], .input-box input[type="password"], .input-box input[type="email"], select {
    width: 100%;
    height: 50px;
    padding: 0 16px;
    border-radius: 3px;
    border: 1px solid var(--border-color);
}
.input-box input[type="text"]:focus, .input-box input[type="password"]:focus, .input-box input[type="email"]:focus, select:focus {
    border: 1px solid var(--main-color);
}
.input-box input:read-only {
    background-color: var(--bg-color);
}
.find-go {
    font-size: 14px;
    font-weight: 400;
    color: var(--sub-txt-color-02);
    display: flex;
    justify-content: flex-end;
    margin-bottom: 24px;
}
.register-go {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
    font-size: 14px;
    font-weight: 400;
    color: var(--sub-txt-color-02);
}
.register-go a {
    color: var(--main-color);
    text-decoration: underline;
}
.board table {
    width: 100%;
    border-collapse: collapse;
    border-top: 2px solid var(--main-color);
}
.board table tr {
    border-bottom: 1px solid var(--border-color);
}
.board table th, .board table td {
    padding: 24px 16px;
    vertical-align: middle;
    white-space: nowrap;
    text-align: center;
}
.board table th {
    font-size: 14px;
    font-weight: 500;
    color: var(--main-color);
    text-align: center;
}
.board table td {
    font-size: 14px;
    font-weight: 400;
    color: var(--sub-txt-color-03);
}
.board table td .num {
    display: inline-block;
    color: var(--main-color);
}
.board table td .tit {
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    text-align: left;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    font-size: 14px;
    font-weight: 400;
    color: var(--sub-txt-color-01);
}
.list-total {
    font-size: 16px;
    font-weight: 300;
    color: var(--black-color);
    margin-bottom: 16px;
}
.list-total b {
    font-weight: 700;
    color: var(--main-color);
}
.search {
    width: max-content;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border-bottom: 2px solid var(--main-color);
    margin: 36px auto 0;
    padding-bottom: 12px;
}
.search input {
    width: 200px;
    border: none;
}
.search img {
    width: 16px;
    height: 16px;
}
.view {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
}
.view textarea {
    margin-top: 24px;
    width: 100%;
    padding: 16px;
    border-radius: 3px;
    border: 1px solid var(--border-color);
    height: 150px;
}
.tit-area {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 24px;
}
.tit-area.border-none {
    border-bottom: none;
}
.tit-area .tit-box .tit {
    font-size: 20px;
    font-weight: 500;
    color: var(--black-color);
    line-height: 1.3;
    margin-bottom: 16px;
}
.tit-area .tit-box.write {
    width: 100%;
}
.tit-area .tit-box.write label {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 6px;
    margin-right: 0;
    cursor: pointer;
}
.tit-area .tit-box.write label input[type="checkbox"] {
    width: 16px;
    height: 16px;
}
.tit-area .tit-box input {
    width: 100%;
    height: 50px;
    border-radius: 3px;
    border: 1px solid var(--border-color);
    padding: 0 16px;
}
.tit-area .tit-box .info {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 24px;
}
.tit-area .tit-box .info span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 300;
    color: var(--sub-txt-color-03);
}
.tit-area .tit-box .info span img {
    width: 20px;
}
.tit-area .tool {
    display: flex;
    align-items: center;
    gap: 24px;
}
.tit-area .tool a img, .tit-area .tool button img {
    width: 24px;
    min-width: 24px;
}
.view .editor-area {
    padding: 60px 0;
    min-height: 350px;
}

.file-box {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.file-box .item {
    border-radius: 6px;
    border: 1px solid var(--border-color);
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
}
.file-box .item img {
    width: 36px;
}
.file-box .item .rt {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.file-box .item .rt a {
    display: flex;
    align-items: center;
    gap: 12px;
}
.file-box .item .rt a span:first-child {
    font-size: 14px;
    font-weight: 500;
    color: var(--black-color);
}
.file-box .item:hover .rt a span:first-child {
    text-decoration: underline;
}
.file-box .item .rt a span:nth-child(2) {
    font-size: 14px;
    font-weight: 400;
    color: var(--sub-txt-color-01);
}
.file-box .item .rt .file-info {
    display: flex;
    gap: 16px;
}
.file-box .item .rt .file-info span {
    display: inline-block;
    font-size: 12px;
    font-weight: 400;
    color: var(--sub-txt-color-03);
}
.file-form {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 24px;
}
.file-form .item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    border: 1px solid var(--border-color);
    padding: 16px;
    border-radius: 3px;;
}
.file-form .item p {
    font-size: 14px;
    font-weight: 400;
    color: var(--sub-txt-color-03);
}
.file-form .item .box {
    background-color: var(--bg-color);
    padding: 8px;
    border-radius: 3px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.file-form .item .box .file-name {
    background-color: #fff;
    border-radius: 3px;
    width: max-content;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px;
    border: 1px solid var(--border-color);
    font-size: 14px;
    font-weight: 400;
    color: var(--sub-txt-color-02);
}
.file-form .item .box .file-name input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin: 0;
    cursor: pointer;
}
.file-form .item label {
    font-size: 14px;
    color: var(--sub-txt-color-02);
}
.editor-form {
    margin-top: 24px;
}
.faq-list {
    border-top: 2px solid var(--main-color);
    border-bottom: 1px solid var(--border-color);
}
.faq-list > li {
    cursor: pointer;
    display: flex;
    flex-direction: column;
}
.faq-list > li.empty {
    align-items: center;
    padding: 48px 24px;
}
.faq-list > li:not(:last-child) {
    border-bottom: 1px solid var(--border-color);
}
.faq-list > li .tit-box {
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.faq-list > li .tit-box .box {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 24px;
}
.faq-list > li .tit-box .que {
    white-space: nowrap;
    font-size: 14px;
    font-weight: 700;
    color: var(--main-color);
}
.faq-list > li .tit-box .tit {
    width: 100%;
    font-size: 14px;
    font-weight: 400;
    color: var(--sub-txt-color-01);
    line-height: 1.3;
}
.faq-list > li .faq-arrow {
    width: 20px;
    transition: .2s ease-in-out;
}
.faq-list > li .faq-arrow.active {
    transform: rotate(90deg);
    transition: .2s ease-in-out;
}
.faq-list > li .toggle-content {
    background-color: var(--bg-color);
    padding: 24px;
    line-height: 1.5;
    border-top: 1px solid var(--border-color);
    font-size: 14px;
    color: var(--sub-txt-color-02);
    display: none;
}
.coupon {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px 24px;
}
.coupon .item .box {
    box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.1);
    border-radius: 3px;
    overflow: hidden;
}
.coupon .item .tp {
    background-color: #EEECE0;
    padding: 36px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
.coupon .item .tp p:first-child {
    font-size: 14px;
    font-weight: 400;
    color: var(--main-color);
}
.coupon .item .tp p:nth-child(2) {
    font-size: 20px;
    font-weight: 700;
    color: var(--black-color);
}
.coupon .item .bt {
    padding: 16px 12px;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.coupon .item .bt span:first-child {
    padding: 4px;
    border-radius: 3px;
    font-size: 14px;
    font-weight: 400;
}
.coupon .item .bt span:first-child.price {
    color: #C18B52;
    background-color: #FBF1DE;
}
.coupon .item .bt span:first-child.product {
    color: #C15293;
    background-color: #FBDEF3;
}
.coupon .item .bt span:first-child.ship {
    color: #7C52C1;
    background-color: #F2DEFB;
}
.coupon .item .bt span:nth-child(2) {
    font-size: 14px;
    font-weight: 400;
    color: var(--sub-txt-color-03);
}
.coupon .item button {
     width: 100%;
     height: 50px;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 14px;
     font-weight: 500;
     color: #fff;
     border-radius: 3px;
     background-color: var(--main-color);
     margin-top: 16px;
}
.coupon .item button:hover {
    opacity: .9;
}
.coupon .item button:disabled {
    background-color: #C6C6C6;
}
.coupon .item button:disabled:hover {
    opacity: 1;
}
.terms-page {
    min-height: 150px;
}
.none-order {
    margin-top: 100px;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    margin-top: 100px;
}
.none-expl {
    background-color: var(--bg-color);
    padding: 24px;
    font-size: 14px;
    font-weight: 400;
    color: var(--main-color);
    margin-bottom: 24px;
}
.none-expl b {
    font-weight: 600;
}
.st-terms {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    max-width: 400px;
    margin: 0 auto;
}
.st-terms .st-content {
    width: 100%;
    height: 200px;
    border: 1px solid var(--border-color);
    border-radius: 3px;
    padding: 16px;
    font-size: 14px;
    font-weight: 400;
    color: var(--sub-txt-color-02);
    line-height: 1.5;
    overflow: hidden;
    overflow-y: auto;
}
.st-terms .st-chk {
    display: flex;
    align-items: center;
    gap: 5px;
}
.st-terms .st-chk input {
    width: 16px;
    height: 16px;
    margin: 0;
}
.st-terms .st-chk label {
    font-weight: 400;
    color: var(--sub-txt-color-01);
    line-height: 1.3;
    cursor: pointer;
}
.btn_confirm {
    width: 100%;
}
.photo-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px 24px;
}
.photo-list .item {
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
}
.photo-list .item.empty {
    border: none;
    border-radius: 0;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    color: var(--main-color);
    grid-column: span 3;
    padding: 24px;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}
.photo-list .item .img-box {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    position: relative;
}
.photo-list .item .img-box input[type="checkbox"] {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    margin: 0;
    width: 16px;
    height: 16px;
    cursor: pointer;
}
.photo-list .item .img-box .modify-link {
    position: absolute;
    top: 15px;
    left: 40px;
    z-index: 5;
    font-size: 12px;
    font-weight: 500;
    color: #fff;
    background-color: var(--black-color);
    border-radius: 2px;
    padding: 3px 4px;
}
.photo-list .item .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.photo-list .item .txt {
    display: block;
    padding: 24px 16px;
}
.photo-list .item .txt .tit {
    font-size: 20px;
    font-weight: 600;
    color: var(--main-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;
    margin-bottom: 12px;
}
.photo-list .item .txt .info {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
}
.photo-list .item .txt .info span {
    display: flex;
    align-items: center;
    font-size: 12px;
    font-weight: 400;
    color: var(--sub-txt-color-03);
}
.photo-list .item .txt .info span:not(:last-child)::after {
    content: "";
    display: inline-block;
    width: 1px;
    height: 12px;
    margin: 0 12px;
    background-color: var(--border-color);
}
.photo-list .item .txt .content {
    font-size: 14px;
    font-weight: 400;
    color: var(--sub-txt-color-02);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    text-align: left;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    margin-bottom: 24px;
}
.photo-list .item .txt .view-more {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    font-weight: 400;
    color: var(--sub-txt-color-03);
}
.photo-list .item .txt .view-more img {
    width: 12px;
}
.page-category {
    display: flex;
    gap: 36px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 60px;
}
.page-category a {
    display: inline-block;
    font-size: 20px;
    font-weight: 600;
    color: var(--sub-txt-color-03);
    padding-bottom: 16px;
    position: relative;
}
.page-category a:hover {
    color: var(--black-color);
}
.page-category a.on {
    color: var(--black-color);
}
.page-category a.on::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 1px;
    border-bottom: 1px solid var(--black-color);
}
.board .status {
    font-size: 14px;
    font-weight: 400;
    padding: 4px;
    border-radius: 3px;
}
.board .status.waiting {
    border: 1px solid var(--main-color);
    color: var(--main-color);
}
.board .status.done {
    color: #fff;
    background-color: var(--main-color);
}
.reply-box {
    border-radius: 12px;
    padding: 36px 24px;
    background-color: var(--bg-color);
    border: 1px solid var(--border-color);
}
.reply-box .tp {
    display: flex;
    align-items: center;
    padding-bottom: 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
}
.reply-box .tp span {
    display: flex;
    align-items: center;
    font-size: 16px;
    color: var(--black-color);
}
.reply-box .tp span b {
    font-weight: 500;
}
.reply-box .tp span b.yes {
    color: #04A452;
}
.reply-box .tp span b.no {
    color: var(--sub-txt-color-03);
}
.reply-box .tp span:not(:last-child)::after {
    content: "";
    display: inline-block;
    width: 1px;
    height: 14px;
    background-color: var(--border-color);
    margin: 0 12px;
}
.reply-box .bt span {
    font-weight: 400;
    color: var(--black-color);
    line-height: 1.5;
}
.step-area {
    display: flex;
    flex-direction: column;
    gap: 36px;
    margin-bottom: 36px;
}
.step-area .item {
    border-radius: 3px;
    border: 1px solid var(--border-color);
    padding: 36px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.step-area .item p {
    font-size: 14px;
    font-weight: 400;
    color: var(--main-color);
    line-height: 1.5;
    word-break: keep-all;
}
.step-area .item p:first-child {
    font-size: 20px;
    font-weight: 600;
    color: var(--main-color);
}
.step-area .item p.sub {
    padding-left: 24px;
    color: var(--sub-txt-color-03);
}
.link-area {
    display: flex;
    gap: 24px;
}
.link-area .item {
    flex: 1;
    border-radius: 3px;
    border: 1px solid var(--border-color);
    padding: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}
.link-area .item > img {
    height: 35px;
}
.link-area .item > p {
    font-size: 20px;
    font-weight: 500;
    color: var(--main-color);
}
.link-area .item .box-flex {
    width: 100%;
    display: flex;
    gap: 12px;
}
.link-area .item .box-flex .box {
    width: 100%;
    background-color: var(--bg-color);
    border-radius: 3px;
    border: 1px solid var(--border-color);
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
.link-area .item .box-flex .box:hover {
    background-color: #fff;
}
.link-area .item .box-flex .box span {
    background-color: #fff;
    border: 1px solid var(--main-color);
    width: 48px;
    height: 48px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.link-area .item .box-flex .box span img {
    width: 24px;
}
.link-area .item .box-flex .box p {
    font-size: 14px;
    font-weight: 400;
    color: var(--main-color);
}
.sm-btn {
    font-size: 12px;
    font-weight: 500;
    color: #fff;
    background-color: var(--main-color);
    padding: 5px 12px;
    border-radius: 3px;
    margin-left: 6px;
}
.coupon-list {
    display: none;
    background-color: #fff;
    position: absolute;
    bottom: 100%;
    right: 0;
    border: 1px solid var(--black-color);
    min-width: 400px;
}
.coupon-list .cp-tp {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--black-color);
    padding: 12px 16px;
}
.coupon-list .cp-tp span {
    font-size: 14px !important;
    color: var(--black-color);
}
.coupon-list .cp-tp > img {
    width: 16px;
    cursor: pointer;
}
.coupon-list table {
    width: 100%;
    border-collapse: collapse !important;
    table-layout: fixed;
}
.coupon-list table th {
    background-color: var(--bg-color);
    text-align: center;
    padding: 12px;
    border-bottom: 1px solid var(--border-color);
    font-size: 12px;
    color: var(--black-color);
    line-height: 1.3;
}
.coupon-list table td {
    text-align: center;
    padding: 12px;
    border-bottom: 1px solid var(--border-color);
    font-size: 12px;
    color: var(--sub-txt-color-02);
    line-height: 1.3;
}
.coupon-list table td button {
    font-size: 12px;
    padding: 5px 12px;
    border-radius: 3px;
    border: 1px solid var(--black-color);
}
.coupon-list table td button:hover {
    background-color: var(--bg-color);
}
.order-dashboard .item .cont .box a {
    display: inline-block;
    background-color: var(--main-color);
    border-radius: 3px;
    font-size: 12px;
    font-weight: 500;
    color: #fff;
    height: 24px !important;
    line-height: 24px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px !important;
    margin: 0 !important;
}
.chk_box input[type="radio"] + label {
    font-size: 14px !important;
}
#sit_use_write_star li img {
    width: 70px !important;
}
.new_win .frm_info {
    font-size: 0.725rem !important;
}
.new_icon {
    background-color: var(--red-color);
    border-radius: 2px;
    font-size: 12px;
    color: #fff;
    padding: 2px 4px;
}
#sod_frm #sod_frm_pt_alert {
    font-size: 14px;
    margin-bottom: 12px;
}
#sod_frm_paysel {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
#settle_bank {
    padding: 0;
    border: none;
}
#settle_bank select, #settle_bank input {
    width: 100%;
    height: 45px;
    padding: 0 16px;
}
#settle_bank #od_deposit_name {
    height: 45px;
    padding: 0 16px;
}
input {
    box-shadow: unset !important;
}
#sod_fin_cancelfrm {
    width: 320px;
}
#sod_fin_cancelfrm h2 {
    font-size: 18px;
    padding: 12px;
}
.tbl_head03 thead th {
    font-size: 14px;
    padding: 12px 4px;
    vertical-align: middle;
}
.tbl_head03 td {
    font-size: 14px;
    padding: 12px 4px;
    vertical-align: middle !important;
}
#sod_addr .td_mng .mng_btn {
    font-size: 12px;
}