@charset "utf-8";

div, p, ul, li, strong, b, span, h1, h2, h3, h4, h5 {word-break: keep-all;}
img {max-width: 100%;}

.desc {
  font-size: 16px;
  line-height: 1.8;
  font-weight: 300;
}
.desc b {font-weight: bold;}
.arrow {
  width: 17px !important;
  aspect-ratio: 17 / 9;
  transition: all .2s;
}
.arrow .line {
  fill: none;
  stroke: #222;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1px;
  transition: all .2s;
}
.more-btn {
  background: #fff;
  height: 42px;
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 160px;
  padding: 0 30px;
  transition: all .2s;
  color: #222;
  width: fit-content;
}
.more-btn span {
  font-size: 14px;
  transition: all .2s;
}
.more-btn:hover {
  background: #91BDF3;
  color: #fff;
}
.more-btn:hover span {transform: translateX(-3px)}
.more-btn:hover .arrow {transform: translateX(3px)}
.more-btn:hover .arrow .line {stroke: #fff;}
.more-btn.black {
  background: #000;
  color: #fff;
  gap: 10px;
}
.more-btn.black .arrow .line {stroke: #fff;}
.more-btn.black:hover {
  background: #fff;
  color: #000;
}
.more-btn.black:hover .arrow .line {stroke: #000;}
.item-list {
  display: flex;
  flex-wrap: wrap;
  gap: 60px 10px;
}
.item-list li {width: calc((100% - 40px)/5);}
.item-list li a {display: block;}
.item-list li .img {
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.item-list li .img .bg {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  width: 100%;
  height: 100%;
  transition: all .2s;
}
.item-list li .txt {padding-top: 20px;}
.item-list li .txt .subject {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.5px;
}
.item-list li .txt .desc {
  font-size: 15px;
  color: #666;
  margin: 10px 0 15px;
}
.item-list li:hover .img .bg {transform: scale(1.1)}
.price-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}
.price-wrap .percent {
  background: #000;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  padding: 2px 6px 1px;
  display: inline-block;
}
.price-wrap .price {
  font-size: 18px;
  font-weight: bold;
}
.price-wrap .discount {
  font-size: 16px;
  color: #aaa;
  text-decoration: line-through;
}
.price-wrap + .note {
  color: #666;
  font-size: 12px;
  margin-top: 10px;
}
.form-wrap .form-group {
  margin-bottom: 30px;
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  gap: 0 30px;
}
.form-wrap .half-group {flex: 1;}
.form-wrap .form-label {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
  display: block;
  width: 100%;
}
.form-wrap .form-label span {
  color: #ff4200;
  margin-left: 4px;
  display: inline-block;
}
.form-wrap .form-input {
  border: none;
  border-bottom: 1px solid rgba(34,34,34,0.4);
  padding-bottom: 15px;
  font-size: 16px;
  background: none;
  width: 100%;
}
.form-wrap .form-input::placeholder {color: rgba(34,34,34,0.4);}
.form-wrap .form-input:focus {
  outline: none !important;
  box-shadow: none !important;
  border: none !important;
  border-bottom: 1px solid rgba(34,34,34,0.4) !important;
}
.form-wrap select.form-input {
  -webkit-appearance:none; /* for chrome */
  -moz-appearance:none; /*for firefox*/
  appearance:none;
  background-image: url("/img/assets/arrow_select.svg");
  background-repeat: no-repeat;
  background-position: top 5px right;
  background-size: 12px 6px;
}
.form-wrap textarea.form-input {
  border: 1px solid rgba(34,34,34,0.4) !important;
  padding: 15px;
  height: 200px;
  resize: none;
}
.form-wrap textarea.form-input:focus {border: 1px solid rgba(34,34,34,0.4) !important;}
.form-wrap .file-group {width: 100%;}
.form-wrap .file-inner {
  display: flex;
  gap: 5px;
}
.form-wrap .file-name-area {
  background: #f5f5f5;
  height: 46px;
  flex: 1;
  padding: 0 15px;
  font-size: 15px;
  color: #666;
  line-height: 46px;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: normal;
  overflow: hidden;
}
.form-wrap .file-btn-area {width: 100px;}
.form-wrap .file-btn {
  border: 1px solid #000;
  font-size: 14px;
  font-weight: 600;
  background: none;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 46px;
  cursor: pointer;
}
.form-wrap .file-btn.disabled {
  color: #aaa;
  border-color: #ddd;
  cursor: default;
}
.form-wrap .submitted-check {
  width: 100%;
  margin-top: 15px;
}
.form-wrap .submitted-check label {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}
.form-wrap .submitted-check input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
}
.form-wrap .submitted-check .check {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #eee;
  position: relative;
  flex-shrink: 0;
}
.form-wrap .submitted-check .check::after {
  content: "";
  display: none;
  width: 11px;
  aspect-ratio: 13 / 9;
  background: url("/img/assets/check.svg") center / contain no-repeat;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.form-wrap .submitted-check .txt {
  margin-left: 10px;
  font-size: 15px;
}
.form-wrap .submitted-check input:checked + .check {background: #000;}
.form-wrap .submitted-check input:checked + .check::after {display: block;}
.form-wrap .frm_file {display: none;}
.form-wrap .input-group {width: 100%;}
.form-wrap .input-group .form-input {padding: 13px 0;}
.form-wrap .input-group .zip-wrap {
  display: flex;
  align-items: end;
  gap: 10px;
}
.form-wrap .input-group .zip-wrap .form-input {flex: 1;}
.form-wrap .input-group .zip-wrap .btn_frmline {
  border: 1px solid #596252;
  font-size: 14px;
  font-weight: 600;
  background: none;
  color: #596252;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  cursor: pointer;
}
.form-wrap .btn-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.form-wrap .agree-group {
  display: flex;
  align-items: center;
  justify-content: center;
}
.form-wrap .agree-group > label {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.form-wrap .agree-group input[type=checkbox] {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
}
.form-wrap .agree-group .check {
  width: 26px;
  height: 26px;
  border-radius: 26px;
  background: #eee;
  position: relative;
  display: inline-block;
}
.form-wrap .agree-group .check::after {
  content: none;
  background: url(/img/assets/check.svg) center / cover no-repeat;
  display: block;
  width: 13px;
  aspect-ratio: 13 / 9;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}
.form-wrap .agree-group .txt {
  font-size: 16px;
  margin-left: 10px;
}
.form-wrap .agree-group .modal-btn {
  font-size: 16px;
  font-weight: bold;
  color: #000;
  cursor: pointer;
  margin-left: 4px;
}
.form-wrap .agree-group > label:has(input:checked) .check {background: #000;}
.form-wrap .agree-group > label:has(input:checked) .check::after {content: ""}
.form-wrap .write-btn {
  width: 140px;
  height: 50px;
  background: #000;
  font-size: 16px;
  color: #fff;
  font-weight: 600;
  border: none;
}
.form-wrap .note {
  margin-top: 15px;
  color: #666;
}
@media all and (max-width: 1024px) {
  .item-list li {width: calc((100% - 20px) / 3);}
}
@media all and (max-width: 767px) {
  .desc {
    font-size: 14px;
    line-height: 1.5;
  }
  .arrow {width: 15px !important;}
  .more-btn {
    height: 36px;
    gap: 4px;
    min-width: 120px;
    padding: 0 20px;
  }
  .more-btn span {font-size: 13px;}
  .item-list {gap: 30px 10px;}
  .item-list li {width: calc((100% - 10px) / 2);}
  .item-list li .txt {padding-top: 15px;}
  .item-list li .txt .subject {font-size: 15px;}
  .item-list li .txt .desc {
    font-size: 12px;
    margin: 5px 0 12px;
  }
  .price-wrap {display: block;}
  .price-wrap .percent {
    font-size: 12px;
    padding: 1px 4px;
    display: block;
    width: fit-content;
    margin-bottom: 3px;
  }
  .price-wrap .price {
    font-size: 15px;
  }
  .price-wrap .discount {font-size: 12px;}
  .price-wrap + .note {margin-top: 5px;}
  .form-wrap .form-group {
    margin-bottom: 25px;
    gap: 0;
  }
  .form-wrap .half-group {
    flex: none;
    width: 100%;
    margin-bottom: 25px;
  }
  .form-wrap .half-group:last-child {margin-bottom: 0;}
  .form-wrap .form-label {font-size: 14px;}
  .form-wrap .form-input {padding-bottom: 10px;}
  .form-wrap .file-name-area {
    height: 40px;
    padding: 0 12px;
  }
  .form-wrap .file-btn {height: 40px;}
  .form-wrap .input-group .form-input {padding: 12px 0 10px;}
  .form-wrap .input-group .zip-wrap .btn_frmline {height: 40px;}
  .form-wrap .submitted-check .check,
  .form-wrap .agree-group .check {
    width: 20px;
    height: 20px;
  }
  .form-wrap .agree-group .txt,
  .form-wrap .agree-group .modal-btn {font-size: 14px;}
  .form-wrap .write-btn {
    width: 100%;
    height: 46px;
    margin-top: 30px;
  }
}

/*main*/
.main {margin-top: -80px;}
.main section {
  position: relative;
  overflow: hidden;
}
.main .visual {height: 100dvh;}
.main .visual .visual-slider,
.main .visual .swiper-wrapper,
.main .visual .swiper-slide {height: 100%;}
.main .visual .visual-slider .txt {
  position: absolute;
  width: 100%;
  max-width: 1400px;
  left: 50%;
  transform: translateX(-50%);
  bottom: 20%;
  text-align: right;
  color: #fff;
}
.main .visual .visual-slider .txt h2 {
  font-family: "Pretendard", serif;
  font-size: 50px;
  font-weight: 500;
}
.main .visual .visual-slider .txt p {
  font-size: 17px;
  margin-top: 20px;
}
.main .visual .visual-slider .txt .more-btn {
  margin-top: 50px;
  margin-left: auto;
}
.main .visual .visual-slider .txt h2,
.main .visual .visual-slider .txt p,
.main .visual .visual-slider .txt .more-btn {
  opacity: 0;
  transform: translateY(40px);
  transition:
          opacity 0.7s ease,
          transform 0.7s ease;
}
.main .visual .visual-slider.is-ready .swiper-slide-active .txt h2,
.main .visual .visual-slider.is-ready .swiper-slide-active .txt p,
.main .visual .visual-slider.is-ready .swiper-slide-active .txt .more-btn {
  opacity: 1;
  transform: translateY(0);
}
.main .visual .visual-slider.is-ready .swiper-slide-active .txt h2 {transition-delay: 0.3s;}
.main .visual .visual-slider.is-ready .swiper-slide-active .txt p {transition-delay: 0.5s;}
.main .visual .visual-slider.is-ready .swiper-slide-active .txt .more-btn {transition-delay: 0.7s;}
.main .visual .visual-slider .bg {
  width: 100%;
  height: 100%;
}
.main .visual .visual-slider .bg span {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  display: block;
}
.main .visual .visual-slider .bg span.visible-t {display: none;}
.main .visual .slider-controls > div {
  position: absolute;
  top: 0;
  width: 12%;
  height: 100%;
  z-index: 2;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all .4s;
}
.main .visual .slider-controls .prev-btn {left: 0;}
.main .visual .slider-controls .next-btn {right: 0;}
.main .visual .slider-controls > div:hover {opacity: 1;}
.main .visual .swiper-pagination {bottom: 30px;}
.main .visual .swiper-pagination .swiper-pagination-bullet {
  background: #fff;
  opacity: 0.7;
}
.main .visual .swiper-pagination .swiper-pagination-bullet-active {
  background: #000;
  opacity: 1;
}
.main .about {
  height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  background: url(/img/assets/main_about_bg.jpg) center / cover no-repeat;
}
.main .about .txt h2 {
  font-family: "Pretendard", serif;
  font-size: 90px;
  font-weight: 500;
  line-height: 1;
}
.main .about .txt p {
  font-size: 17px;
  margin: 30px 0 50px;
}
.main .about .txt .more-btn {
  margin: 0 auto;
  height: 60px;
  min-width: 180px;
}
.main .about .txt .more-btn span {font-size: 16px;}

@media all and (max-width: 1400px) {
  .main .visual .visual-slider .txt {padding: 0 80px;}
}
@media all and (max-width: 1024px) {
  .main .visual .visual-slider .txt {padding: 0 80px;}
  .main .visual .visual-slider .bg span.hidden-t {display: none;}
  .main .visual .visual-slider .bg span.visible-t {display: block;}
}
@media all and (max-width: 767px) {
  .main {margin-top: -50px;}
  .main .visual .visual-slider .txt {
    padding: 0 16px;
    bottom: 15%;
  }
  .main .visual .visual-slider .txt h2 {font-size: 30px;}
  .main .visual .visual-slider .txt p {
    font-size: 15px;
    margin-top: 10px;
  }
  .main .visual .visual-slider .txt .more-btn {margin-top: 30px;}
  .main .visual .slider-controls {display: none;}
  .main .visual .swiper-pagination {bottom: 10px;}
  .main .visual .swiper-pagination .swiper-pagination-bullet {
    width: 5px;
    height: 5px;
  }
  .main .about .txt h2 {font-size: 40px;}
  .main .about .txt p {
    font-size: 15px;
    margin: 15px 0 30px;
  }
  .main .about .txt .more-btn {
    min-width: 160px;
    height: 48px;
  }
  .main .about .txt .more-btn.black span {font-size: 14px;}
}

/*about us*/
.sub-about > div {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  min-height: 100dvh;
}
.sub-about > div > div {width: 50%;}
.sub-about .txt {
  display: flex;
  align-items: center;
  padding: 6%;
}
.sub-about .txt h2 {
  font-family: "Pretendard", serif;
  font-size: 42px;
  margin-bottom: 50px;
  font-weight: 400;
  color: #91BDF3;
}
.sub-about .img {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.sub-about > div:nth-child(3) .txt,
.sub-about > div:nth-child(5) .txt {order: 2;}
.sub-about > div:nth-child(3) .img,
.sub-about > div:nth-child(5) .img {order: 1;}

@media all and (max-width: 1024px) {
  .sub-about > div {
    min-height: auto;
  }
  .sub-about .img {aspect-ratio: 512 / 640}
  .sub-about .txt h2 {
    font-size: 36px;
    margin-bottom: 30px;
  }
}
@media all and (max-width: 991px) {
  .sub-about > div > div {width: 100%;}
  .sub-about .txt {
    padding: 100px 40px;
    order: 1 !important;
  }
  .sub-about .img {order: 2 !important;}
}
@media all and (max-width: 767px) {
  .sub-about .txt {padding: 80px 16px;}
  .sub-about .txt h2 {font-size: 30px;}
}

/*review*/
.sub-review {
  max-width: 1200px;
  margin: 0 auto;
}
.sub-review h3 {
  font-size: 20px;
  margin-bottom: 20px;
}
.sub-review .tab-menu {
  display: flex;
  border-bottom: 1px solid #000;
}
.sub-review .tab-menu li {
  height: 50px;
  font-size: 15px;
  border-top: 1px solid #ddd;
  border-right: 1px solid #ddd;
  min-width: 200px;
  text-align: center;
  line-height: 50px;
  background: #f8f8f8;
  cursor: pointer;
  color: #666;
}
.sub-review .tab-menu li a {
  display: block;
  width: 100%;
  height: 100%;
  color: inherit;
}
.sub-review .tab-menu li:first-child {border-left: 1px solid #ddd;}
.sub-review .tab-menu li.active {
  border-color: #000;
  border-left: 1px solid #000;
  font-weight: bold;
  background: #fff;
  color: #000;
}
.sub-review .list-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin: 40px 0 20px;
}
.sub-review .sort-wrap {position: relative;}
.sub-review .sort-wrap .present-sort {
  display: flex;
  align-items: center;
  cursor: pointer;
  gap: 8px;
  padding: 0;
  border: 0;
  background: transparent;
}
.sub-review .sort-wrap .present-sort span {font-size: 15px;}
.sub-review .sort-wrap .sort-list {display: none;}
.sub-review .sort-wrap .sort-list li {margin: 8px 0;}
.sub-review .sort-wrap .sort-list li a {
  display: block;
  font-size: 14px;
  transition: all .3s;
}
.sub-review .sort-wrap .sort-list li a.active {font-weight: 700;}
.sub-review .sort-wrap.active .sort-list {
  display: block;
  background: #fff;
  border: 1px solid #ebe8e1;
  padding: 10px 0;
  position: absolute;
  top: 25px;
  left: 0;
  z-index: 10;
  width: 90px;
  text-align: center;
}
.sub-review .search-wrap .search-bar {
  width: 250px;
  border-bottom: 1px solid #aaa;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 10px;
}
.sub-review .search-wrap .search-bar .search-input {
  border: none;
  font-size: 15px;
  flex: 1;
  min-width: 0;
  background: none;
  outline: none;
}
.sub-review .search-wrap .search-bar .search-input::placeholder {color: rgba(0,0,0,.3);}
.sub-review .search-wrap .search-bar .search-input:focus {
  outline: none !important;
  border: none !important;
  box-shadow: none !important;
}
.sub-review .search-wrap .search-bar .search-btn {
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
}
.sub-review .search-wrap .search-bar .search-btn img {
  display: block;
  width: 16px;
  height: 16px;
}
.sub-review .review-search-result {
  margin: -2px 0 20px;
  color: #777;
  font-size: 14px;
}
.sub-review .review-search-result strong {color: #111;}
.sub-review .review-list {
  border-top: 1px solid #111;
}
.sub-review .review-list__item {
  border-bottom: 1px solid #ddd;
}
.sub-review .review-list__summary {
  position: relative;
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: 172px;
  padding: 25px 60px 25px 20px;
  cursor: pointer;
  outline: none;
  transition: background-color .2s ease;
}
.sub-review .review-list__summary:hover,
.sub-review .review-list__summary:focus-visible {background: #f8f8f8;}
.sub-review .review-list__thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 120px;
  width: 120px;
  height: 120px;
  overflow: hidden;
  background: #f6f6f6;
}
.sub-review .review-list__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sub-review .review-list__info {
  min-width: 0;
  flex: 1;
}
.sub-review .review-list__product {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 10px;
  overflow: hidden;
  color: #555;
  font-size: 14px;
  line-height: 1.4;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.sub-review .review-list__product:hover {text-decoration: underline;}
.sub-review .review-list__rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.sub-review .review-list__stars {
  position: relative;
  display: inline-block;
  color: #d6d6d6;
  font-size: 18px;
  line-height: 1;
  letter-spacing: 2px;
  white-space: nowrap;
}
.sub-review .review-list__stars > span {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  color: #91BDF3;
  white-space: nowrap;
}
.sub-review .review-list__rating b {
  color: #111;
  font-size: 13px;
  font-weight: 600;
}
.sub-review .review-list__subject {
  display: block;
  overflow: hidden;
  color: #111;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.5;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.sub-review .review-list__meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 13px;
  color: #888;
  font-size: 13px;
}
.sub-review .review-list__meta time {position: relative;}
.sub-review .review-list__meta time::before {
  position: absolute;
  top: 50%;
  left: -11px;
  width: 1px;
  height: 10px;
  background: #ddd;
  transform: translateY(-50%);
  content: '';
}
.sub-review .review-list__toggle {
  position: absolute;
  top: 50%;
  right: 24px;
  width: 15px;
  height: 15px;
  border-right: 1px solid #111;
  border-bottom: 1px solid #111;
  transform: translateY(-70%) rotate(45deg);
  transition: transform .2s ease;
}
.sub-review .review-list__item.active .review-list__toggle {
  transform: translateY(-25%) rotate(225deg);
}
.sub-review .review-list__detail {
  display: none;
  padding: 32px 60px 40px 168px;
  border-top: 1px solid #eee;
  background: #fafafa;
}
.sub-review .review-list__content {
  color: #333;
  font-size: 15px;
  line-height: 1.8;
  word-break: break-word;
}
.sub-review .review-list__content img {
  max-width: 100%;
  height: auto;
}
.sub-review .review-list__reply {
  display: flex;
  gap: 22px;
  margin-top: 30px;
  padding-top: 25px;
  border-top: 1px solid #ddd;
}
.sub-review .review-list__reply-label {
  flex: 0 0 auto;
  height: 25px;
  padding: 0 9px;
  border: 1px solid #111;
  color: #111;
  font-size: 12px;
  font-weight: 700;
  line-height: 23px;
}
.sub-review .review-list__reply-body {min-width: 0;}
.sub-review .review-list__reply-body > strong {
  display: inline-block;
  margin: 1px 10px 10px 0;
  color: #111;
  font-size: 15px;
}
.sub-review .review-list__reply-body > span {
  color: #888;
  font-size: 12px;
}
.sub-review .review-list__reply-body > div {
  color: #555;
  font-size: 14px;
  line-height: 1.7;
}
.sub-review .review-list__empty {
  padding: 100px 20px;
  border-top: 1px solid #111;
  border-bottom: 1px solid #ddd;
  text-align: center;
}
.sub-review .review-list__empty strong {
  display: block;
  color: #111;
  font-size: 16px;
}
.sub-review .review-list__empty p {
  margin-top: 10px;
  color: #888;
  font-size: 14px;
}
.sub-review .review-pagination {
  margin-top: 40px;
  text-align: center;
}
@media all and (max-width: 767px) {
  .sub-review h3 {
    font-size: 16px;
    margin-bottom: 15px;
  }
  .sub-review .tab-menu li {
    min-width: auto;
    flex: 1;
    height: 40px;
    line-height: 40px;
    font-size: 14px;
  }
  .sub-review .sort-wrap .present-sort {gap: 5px;}
  .sub-review .sort-wrap .present-sort span {font-size: 14px;}
  .sub-review .sort-wrap .present-sort img {height: 10px;}
  .sub-review .list-top {
    gap: 20px;
    margin: 28px 0 18px;
  }
  .sub-review .search-wrap {
    width: 100%;
    order: 2;
  }
  .sub-review .search-wrap .search-bar {width: 100%;}
  .sub-review .search-wrap .search-bar .search-input {font-size: 14px;}
  .sub-review .review-search-result {margin-bottom: 12px;}
  .sub-review .review-list__summary {
    align-items: flex-start;
    gap: 15px;
    min-height: 0;
    padding: 20px 36px 20px 0;
  }
  .sub-review .review-list__thumb {
    flex-basis: 82px;
    width: 82px;
    height: 82px;
  }
  .sub-review .review-list__product {
    margin-bottom: 7px;
    font-size: 13px;
  }
  .sub-review .review-list__rating {
    gap: 7px;
    margin-bottom: 9px;
  }
  .sub-review .review-list__stars {
    font-size: 15px;
    letter-spacing: 1px;
  }
  .sub-review .review-list__rating b {font-size: 12px;}
  .sub-review .review-list__subject {
    display: -webkit-box;
    font-size: 14px;
    white-space: normal;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
  .sub-review .review-list__meta {
    gap: 16px;
    margin-top: 9px;
    font-size: 12px;
  }
  .sub-review .review-list__meta time::before {left: -9px;}
  .sub-review .review-list__toggle {
    right: 5px;
    width: 11px;
    height: 11px;
  }
  .sub-review .review-list__detail {
    padding: 24px 16px 30px;
  }
  .sub-review .review-list__content {font-size: 14px;}
  .sub-review .review-list__reply {
    gap: 12px;
    margin-top: 22px;
    padding-top: 20px;
  }
  .sub-review .review-list__empty {padding: 70px 16px;}
  .sub-review .review-pagination {margin-top: 30px;}
}

/*Q&A*/
.sub-qna {
  max-width: 1200px;
  margin: 0 auto;
}
.sub-qna .qna-heading {margin-bottom: 38px;}
.sub-qna .qna-heading h3 {
  color: #111;
  font-size: 20px;
  font-weight: 700;
}
.sub-qna .qna-heading h3 span {
  color: #777;
  font-size: .85em;
  font-weight: 500;
}
.sub-qna .qna-heading p {
  margin-top: 10px;
  color: #777;
  font-size: 14px;
}
.sub-qna .qna-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 20px;
}
.sub-qna .qna-filter {
  display: flex;
  align-items: center;
  gap: 30px;
}
.sub-qna .qna-filter a {
  color: #888;
  font-size: 16px;
}
.sub-qna .qna-filter .active a {
  color: #91BDF3;
  font-weight: 700;
}
.sub-qna .qna-search__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 280px;
  padding-bottom: 10px;
  border-bottom: 1px solid #aaa;
}
.sub-qna .qna-search__input {
  min-width: 0;
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 15px;
}
.sub-qna .qna-search__input::placeholder {color: rgba(0,0,0,.3);}
.sub-qna .qna-search__input:focus {
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
}
.sub-qna .qna-search__button {
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.sub-qna .qna-search__button img {
  display: block;
  width: 16px;
  height: 16px;
}
.sub-qna .qna-search-result {
  margin: -2px 0 20px;
  color: #777;
  font-size: 14px;
}
.sub-qna .qna-search-result strong {color: #111;}
.sub-qna .qna-list {border-top: 1px solid #111;}
.sub-qna .qna-list__item {border-bottom: 1px solid #ddd;}
.sub-qna .qna-list__question {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 96px;
  padding: 22px 58px 22px 0;
  cursor: pointer;
  outline: 0;
  transition: background-color .2s ease;
}
.sub-qna .qna-list__question:hover,
.sub-qna .qna-list__question:focus-visible {background: #fafafa;}
.sub-qna .qna-list__product {
  flex: 0 0 220px;
  width: 220px;
  padding: 0 25px;
  overflow: hidden;
  color: #111;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.sub-qna .qna-list__product:hover {text-decoration: underline;}
.sub-qna .qna-list__main {
  min-width: 0;
  flex: 1;
  padding: 0 35px;
  border-left: 1px solid #eee;
}
.sub-qna .qna-list__subject {
  display: block;
  overflow: hidden;
  color: #222;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.sub-qna .qna-list__secret {
  display: inline-block;
  margin-left: 7px;
  width: auto;
  height: 12px;
  vertical-align: 0;
}
.sub-qna .qna-list__meta {
  display: flex;
  gap: 18px;
  margin-top: 8px;
  color: #999;
  font-size: 12px;
}
.sub-qna .qna-list__meta time {position: relative;}
.sub-qna .qna-list__meta time::before {
  position: absolute;
  top: 50%;
  left: -10px;
  width: 1px;
  height: 9px;
  background: #ddd;
  transform: translateY(-50%);
  content: '';
}
.sub-qna .qna-list__status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: auto;
  height: 26px;
  padding: 0 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}
.sub-qna .qna-list__status.sit_qaa_done {background: #91BDF3;color: #fff;}
.sub-qna .qna-list__status.sit_qaa_yet {background: #f2f2f2;color: #888;}
.sub-qna .qna-list__arrow {
  position: absolute;
  top: 50%;
  right: 20px;
  width: 11px;
  height: 11px;
  border-right: 1px solid #111;
  border-bottom: 1px solid #111;
  transform: translateY(-70%) rotate(45deg);
  transition: transform .2s ease;
}
.sub-qna .qna-list__item.active .qna-list__arrow {transform: translateY(-25%) rotate(225deg);}
.sub-qna .qna-list__detail {
  display: none;
  border-top: 1px solid #eee;
  background: #f8f8f8;
}
.sub-qna .qna-list__detail .sit_qa_p {margin: 0;line-height: 1.7;}
.sub-qna .qna-list__detail .sit_qa_qaq,
.sub-qna .qna-list__detail .sit_qa_qaa {
  position: relative;
  min-height: 64px;
  padding: 22px 22px 22px 60px;
  color: #333;
  font-size: 15px;
  line-height: 1.7;
  word-break: break-word;
  border-bottom: 1px solid #eee;
}
.sub-qna .qna-list__detail .sit_qa_qaa {margin-top: 5px;}
.sub-qna .qna-list__detail .sit_qa_p > div:last-child {border-bottom: none;}
.sub-qna .qna-list__detail .qa_alp {
  display: flex;
  position: absolute;
  top: 18px;
  left: 18px;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fff;
  color: #aaa;
  font-size: 14px;
  font-weight: 700;
}
.sub-qna .qna-list__detail img {
  max-width: 100%;
  height: auto;
}
.sub-qna .qna-list__empty {
  padding: 100px 20px;
  border-top: 1px solid #111;
  border-bottom: 1px solid #ddd;
  text-align: center;
}
.sub-qna .qna-list__empty strong {
  display: block;
  color: #111;
  font-size: 16px;
}
.sub-qna .qna-list__empty p {
  margin-top: 10px;
  color: #888;
  font-size: 14px;
}
.sub-qna .qna-pagination {
  margin-top: 40px;
  text-align: center;
}

@media all and (max-width: 767px) {
  .sub-qna .qna-toolbar {
    flex-wrap: wrap;
    gap: 20px;
  }
  .sub-qna .qna-filter {
    width: 100%;
    gap: 15px;
  }
  .sub-qna .qna-filter li + li::before {left: -11px;}
  .sub-qna .qna-filter a {font-size: 14px;}
  .sub-qna .qna-search,
  .sub-qna .qna-search form,
  .sub-qna .qna-search__bar {width: 100%;}
  .sub-qna .qna-search__input {font-size: 14px;}
  .sub-qna .qna-search-result {margin-bottom: 12px;}
  .sub-qna .qna-list__question {
    align-items: flex-start;
    flex-wrap: wrap;
    min-height: 0;
    padding: 20px 34px 20px 0;
  }
  .sub-qna .qna-list__product {
    flex-basis: auto;
    width: calc(100% - 78px);
    padding: 0;
    font-size: 13px;
    text-align: left;
  }
  .sub-qna .qna-list__main {
    flex: 0 0 100%;
    width: 100%;
    margin-top: 10px;
    padding: 0;
    border-left: 0;
  }
  .sub-qna .qna-list__subject {
    display: -webkit-box;
    font-size: 15px;
    white-space: normal;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
  .sub-qna .qna-list__status {
    position: absolute;
    top: 20px;
    right: 34px;
    width: auto;
    font-size: 12px;
  }
  .sub-qna .qna-list__arrow {
    right: 5px;
    width: 10px;
    height: 10px;
  }
  .sub-qna .qna-list__detail .sit_qa_qaq,
  .sub-qna .qna-list__detail .sit_qa_qaa {
    padding: 16px 16px 16px 50px;
    font-size: 14px;
  }
  .sub-qna .qna-list__detail .qa_alp {
    top: 14px;
    left: 14px;
    width: 26px;
    height: 26px;
  }
  .sub-qna .qna-list__empty {padding: 70px 16px;}
  .sub-qna .qna-pagination {margin-top: 30px;}
}
