@charset "UTF-8";
/* 오버레이 */
/*어드민 디자인*/
/*============================*/
/*@mixin center() {
    top: $percentage;
    left: $percentage;
    transform: translate(-$percentage, -$percentage);
}*/
ul, li {
  list-style-type: none;
}

/* 텍스트 이펙트 */
.visu-top {
  animation: top 1s ease-out 0s both;
}

.visu-top2 {
  animation: top2 1s ease-out 0s both;
}

.visu-top3 {
  animation: top3 1s ease-out 0s both;
}

@keyframes top {
  0% {
    opacity: 0;
    margin-top: -120px;
  }
  100% {
    opacity: 1;
    margin-top: 0;
  }
}
@keyframes top2 {
  0% {
    opacity: 0;
    margin-top: -180px;
  }
  100% {
    opacity: 1;
    margin-top: -60px;
  }
}
@keyframes top3 {
  0% {
    opacity: 0;
    margin-left: -200px;
  }
  100% {
    opacity: 1;
    margin-left: 0px;
  }
}
/* 끝 */
/* 슬라이드 */
@-webkit-keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@keyframes zoomin {
  0% {
    opacity: 0;
    transform: scale(1.3);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeout {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes rightin {
  0% {
    opacity: 1;
    transform: translateX(100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes rightout {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 1;
    transform: translateX(100%);
  }
}
@keyframes leftscale {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  100% {
    transform: translateX(-100%);
    opacity: 0;
  }
}
@keyframes leftout {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  100% {
    transform: translateX(-100%);
    opacity: 0;
  }
}
@keyframes leftin {
  0% {
    transform: translateX(-300px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes bottomin {
  0% {
    opacity: 0;
    transform: translateY(200px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
@keyframes topdown {
  0% {
    opacity: 0;
    transform: translateY(-350%);
  }
  40% {
    transform: translateY(10%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/*////////////////////////리스트 톱*/
.list-top-sec {
  width: 100%;
  padding-top: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #000000;
}
.list-top-sec .list-top {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 0 15px;
}
.list-top-sec .list-top .top-pnav-bx {
  width: 100%;
  display: flex;
}
.list-top-sec .list-top .top-pnav-bx p {
  font-size: 12px;
  font-weight: 300;
  line-height: 20px;
  font-family: "Noto Sans KR", sans-serif;
  color: #7d7f80;
}
.list-top-sec .list-top .top-pnav-bx span {
  font-size: 12px;
  font-weight: 300;
  line-height: 20px;
  font-family: "Noto Sans KR", sans-serif;
  color: #7d7f80;
  margin-left: 10px;
  margin-right: 7px;
}
.list-top-sec .list-top .tab_list {
  width: 100%;
  margin-top: 20px;
}
.list-top-sec .list-top .tab_list .tab_wrap {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.list-top-sec .list-top .tab_list .tab_wrap .tab_bt {
  padding: 5px 15px;
  margin: 2px;
  font-size: 15px;
  font-weight: 300;
  line-height: 20px;
  font-family: "Noto Sans KR", sans-serif;
  color: #323333;
  border: 1px solid #afb2b3;
}
.list-top-sec .list-top .tab_list .tab_wrap .tab_bt.active {
  background-color: #348bd9;
  color: #ffffff;
}
.list-top-sec .list-top .top-tit-box {
  margin-top: 20px;
  width: 100%;
  display: flex;
  align-items: center;
  /* 서치 폼 */
  /* 서치 폼 끝 */
}
.list-top-sec .list-top .top-tit-box .left-tit-bx {
  width: 50%;
  align-items: center;
}
.list-top-sec .list-top .top-tit-box .left-tit-bx h3 {
  font-size: 24px;
  font-weight: 500;
  line-height: 30px;
  font-family: "Noto Sans KR", sans-serif;
  color: #323333;
}
.list-top-sec .list-top .top-tit-box .search-box {
  display: flex;
  justify-content: center;
  padding: 10px;
}
.list-top-sec .list-top .top-tit-box .search-box form {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-flow: row nowrap;
  padding: 0;
}
.list-top-sec .list-top .top-tit-box .search-box form span {
  position: relative;
  overflow: hidden;
}
.list-top-sec .list-top .top-tit-box .search-box form span input.search-form {
  position: relative;
  z-index: 0;
  display: flex;
  padding: 0 10px;
  width: 250px;
  height: 35px;
  font-size: 14px;
  font-weight: 400;
  color: #222222;
  background-color: transparent;
  border: 1px solid #afb2b3;
  outline: none;
}
.list-top-sec .list-top .top-tit-box .search-box form span input.search-form + label {
  position: absolute;
  z-index: -1;
  padding-left: 20px;
  display: inline-block;
  line-height: 45px;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #2bbabe;
  transform: translateX(-100%);
  transition: all 0.5s ease;
}
.list-top-sec .list-top .top-tit-box .search-box form span input::-webkit-input-placeholder {
  font-size: 12px;
  color: white;
}
.list-top-sec .list-top .top-tit-box .search-box form button.search-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 35px;
  font-size: 14px;
  font-weight: 300;
  color: white;
  background-color: #4b4c4d;
  border: none;
  outline: none;
  cursor: pointer;
}
.list-top-sec .list-top .top-tit-box .search-box form button.search-btn:hover {
  background-color: #646566;
}
.list-top-sec .list-top .top-tit-box .right-sort-bx {
  display: flex;
  width: 50%;
  flex-flow: row;
  justify-content: flex-end;
  align-items: center;
}
.list-top-sec .list-top .top-tit-box .right-sort-bx span {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  font-family: "Noto Sans KR", sans-serif;
  color: #323333;
}
.list-top-sec .list-top .top-tit-box .right-sort-bx p {
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  font-family: "Noto Sans KR", sans-serif;
  color: #646566;
  padding: 0 30px 0 3px;
}
.list-top-sec .list-top .top-tit-box .right-sort-bx select::-ms-expand {
  display: none;
}
.list-top-sec .list-top .top-tit-box .right-sort-bx select {
  -webkit-appearance: none;
  -moz-appearance: none;
  text-indent: 1px;
  text-overflow: "";
}
.list-top-sec .list-top .top-tit-box .right-sort-bx select[data-sell=sellt] {
  width: 200px;
  height: 35px;
  border: 1px solid #afb2b3;
  padding-left: 10px;
  color: #646566;
}
.list-top-sec .list-top .top-tit-box .right-sort-bx option[data-opt=optt] {
  font-size: 14px;
  font-weight: 300;
  line-height: 30px;
  font-family: "Noto Sans KR", sans-serif;
}
.list-top-sec .list-top .top-tit-box .right-sort-bx select.arrow {
  background-image: linear-gradient(45deg, transparent 50%, gray 50%), linear-gradient(135deg, gray 50%, transparent 50%), linear-gradient(to right, #ccc, #ccc);
  background-position: calc(100% - 20px) calc(1em + 2px), calc(100% - 15px) calc(1em + 2px), calc(100% - 2.5em) 0.5em;
  background-size: 5px 5px, 5px 5px, 1px 1.5em;
  background-repeat: no-repeat;
}
.list-top-sec .list-top .top-tit-box .right-sort-bx select.arrow:focus {
  background-image: linear-gradient(45deg, green 50%, transparent 50%), linear-gradient(135deg, transparent 50%, green 50%), linear-gradient(to right, #ccc, #ccc);
  background-position: calc(100% - 15px) 1em, calc(100% - 20px) 1em, calc(100% - 2.5em) 0.5em;
  background-size: 5px 5px, 5px 5px, 1px 1.5em;
  background-repeat: no-repeat;
  border-color: #2865b4;
  outline: 0;
}
.list-top-sec .list-top .top-tit-box .right-sort-bx span {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  font-family: "Noto Sans KR", sans-serif;
  color: #323333;
}
.list-top-sec .list-top .top-tit-box .right-sort-bx p {
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  font-family: "Noto Sans KR", sans-serif;
  color: #646566;
  padding: 0 30px 0 3px;
}

@media screen and (max-width: 992px) {
  .list-top-sec {
    width: 100%;
    padding-top: 20px;
    padding-bottom: 15px;
  }
  .list-top-sec .list-top {
    padding: 0 15px;
  }
  .list-top-sec .list-top .top-pnav-bx p {
    font-size: 12px;
    font-weight: 300;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif;
  }
  .list-top-sec .list-top .top-pnav-bx span {
    font-size: 12px;
    font-weight: 300;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif;
    margin-left: 10px;
    margin-right: 7px;
  }
  .list-top-sec .list-top .top-tit-box {
    margin-top: 20px;
    width: 100%;
    display: flex;
    align-items: center;
    /* 서치 폼 */
    /* 서치 폼 끝 */
  }
  .list-top-sec .list-top .top-tit-box .left-tit-bx {
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
  }
  .list-top-sec .list-top .top-tit-box .left-tit-bx h3 {
    font-size: 24px;
    font-weight: 500;
    line-height: 30px;
    font-family: "Noto Sans KR", sans-serif;
  }
  .list-top-sec .list-top .top-tit-box .search-box {
    padding: 10px;
  }
  .list-top-sec .list-top .top-tit-box .search-box form span input.search-form {
    padding: 0 10px;
    width: 200px;
    height: 35px;
    font-size: 14px;
    font-weight: 400;
  }
  .list-top-sec .list-top .top-tit-box .search-box form span input.search-form + label {
    padding-left: 20px;
    display: inline-block;
    line-height: 45px;
  }
  .list-top-sec .list-top .top-tit-box .search-box form span input::-webkit-input-placeholder {
    font-size: 12px;
  }
  .list-top-sec .list-top .top-tit-box .search-box form button.search-btn {
    width: 80px;
    height: 35px;
    font-size: 14px;
    font-weight: 300;
  }
  .list-top-sec .list-top .top-tit-box .right-sort-bx {
    display: flex;
    width: 50%;
    flex-flow: row;
    justify-content: flex-end;
    align-items: center;
  }
  .list-top-sec .list-top .top-tit-box .right-sort-bx span {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif;
  }
  .list-top-sec .list-top .top-tit-box .right-sort-bx p {
    font-size: 14px;
    font-weight: 300;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif;
    padding: 0 30px 0 3px;
  }
  .list-top-sec .list-top .top-tit-box .right-sort-bx select::-ms-expand {
    display: none;
  }
  .list-top-sec .list-top .top-tit-box .right-sort-bx select {
    -webkit-appearance: none;
    -moz-appearance: none;
    text-indent: 1px;
    text-overflow: "";
  }
  .list-top-sec .list-top .top-tit-box .right-sort-bx select[data-sell=sellt] {
    width: 200px;
    height: 35px;
    border: 1px solid #afb2b3;
    padding-left: 10px;
    color: #646566;
  }
  .list-top-sec .list-top .top-tit-box .right-sort-bx option[data-opt=optt] {
    font-size: 14px;
    font-weight: 300;
    line-height: 30px;
    font-family: "Noto Sans KR", sans-serif;
  }
  .list-top-sec .list-top .top-tit-box .right-sort-bx select.arrow {
    background-image: linear-gradient(45deg, transparent 50%, gray 50%), linear-gradient(135deg, gray 50%, transparent 50%), linear-gradient(to right, #ccc, #ccc);
    background-position: calc(100% - 20px) calc(1em + 2px), calc(100% - 15px) calc(1em + 2px), calc(100% - 2.5em) 0.5em;
    background-size: 5px 5px, 5px 5px, 1px 1.5em;
    background-repeat: no-repeat;
  }
  .list-top-sec .list-top .top-tit-box .right-sort-bx select.arrow:focus {
    background-image: linear-gradient(45deg, green 50%, transparent 50%), linear-gradient(135deg, transparent 50%, green 50%), linear-gradient(to right, #ccc, #ccc);
    background-position: calc(100% - 15px) 1em, calc(100% - 20px) 1em, calc(100% - 2.5em) 0.5em;
    background-size: 5px 5px, 5px 5px, 1px 1.5em;
    background-repeat: no-repeat;
    border-color: #2865b4;
    outline: 0;
  }
  .list-top-sec .list-top .top-tit-box .right-sort-bx span {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif;
    color: #323333;
  }
  .list-top-sec .list-top .top-tit-box .right-sort-bx p {
    font-size: 14px;
    font-weight: 300;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif;
    color: #646566;
    padding: 0 30px 0 3px;
  }
}
@media screen and (max-width: 768px) {
  .list-top-sec {
    width: 100%;
    padding-top: 20px;
    padding-bottom: 15px;
  }
  .list-top-sec .list-top {
    padding: 0 15px;
  }
  .list-top-sec .list-top .top-pnav-bx p {
    font-size: 12px;
    font-weight: 300;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif;
  }
  .list-top-sec .list-top .top-pnav-bx span {
    font-size: 12px;
    font-weight: 300;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif;
    margin-left: 10px;
    margin-right: 7px;
  }
  .list-top-sec .list-top .top-tit-box {
    margin-top: 20px;
    width: 100%;
    display: flex;
    align-items: center;
    /* 서치 폼 */
    /* 서치 폼 끝 */
  }
  .list-top-sec .list-top .top-tit-box .left-tit-bx {
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
  }
  .list-top-sec .list-top .top-tit-box .left-tit-bx h3 {
    font-size: 24px;
    font-weight: 500;
    line-height: 30px;
    font-family: "Noto Sans KR", sans-serif;
  }
  .list-top-sec .list-top .top-tit-box .search-box {
    padding: 10px;
  }
  .list-top-sec .list-top .top-tit-box .search-box form span input.search-form {
    padding: 0 10px;
    width: 150px;
    height: 35px;
    font-size: 14px;
    font-weight: 400;
  }
  .list-top-sec .list-top .top-tit-box .search-box form span input.search-form + label {
    padding-left: 20px;
    display: inline-block;
    line-height: 45px;
  }
  .list-top-sec .list-top .top-tit-box .search-box form span input::-webkit-input-placeholder {
    font-size: 12px;
  }
  .list-top-sec .list-top .top-tit-box .search-box form button.search-btn {
    width: 70px;
    height: 35px;
    font-size: 14px;
    font-weight: 300;
  }
  .list-top-sec .list-top .top-tit-box .right-sort-bx {
    display: flex;
    width: 50%;
    flex-flow: row;
    justify-content: flex-end;
    align-items: center;
  }
  .list-top-sec .list-top .top-tit-box .right-sort-bx span {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif;
  }
  .list-top-sec .list-top .top-tit-box .right-sort-bx p {
    font-size: 14px;
    font-weight: 300;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif;
    padding: 0 30px 0 3px;
  }
  .list-top-sec .list-top .top-tit-box .right-sort-bx select::-ms-expand {
    display: none;
  }
  .list-top-sec .list-top .top-tit-box .right-sort-bx select {
    -webkit-appearance: none;
    -moz-appearance: none;
    text-indent: 1px;
    text-overflow: "";
  }
  .list-top-sec .list-top .top-tit-box .right-sort-bx select[data-sell=sellt] {
    width: 200px;
    height: 35px;
    border: 1px solid #afb2b3;
    padding-left: 10px;
    color: #646566;
  }
  .list-top-sec .list-top .top-tit-box .right-sort-bx option[data-opt=optt] {
    font-size: 14px;
    font-weight: 300;
    line-height: 30px;
    font-family: "Noto Sans KR", sans-serif;
  }
  .list-top-sec .list-top .top-tit-box .right-sort-bx select.arrow {
    background-image: linear-gradient(45deg, transparent 50%, gray 50%), linear-gradient(135deg, gray 50%, transparent 50%), linear-gradient(to right, #ccc, #ccc);
    background-position: calc(100% - 20px) calc(1em + 2px), calc(100% - 15px) calc(1em + 2px), calc(100% - 2.5em) 0.5em;
    background-size: 5px 5px, 5px 5px, 1px 1.5em;
    background-repeat: no-repeat;
  }
  .list-top-sec .list-top .top-tit-box .right-sort-bx select.arrow:focus {
    background-image: linear-gradient(45deg, green 50%, transparent 50%), linear-gradient(135deg, transparent 50%, green 50%), linear-gradient(to right, #ccc, #ccc);
    background-position: calc(100% - 15px) 1em, calc(100% - 20px) 1em, calc(100% - 2.5em) 0.5em;
    background-size: 5px 5px, 5px 5px, 1px 1.5em;
    background-repeat: no-repeat;
    border-color: #2865b4;
    outline: 0;
  }
  .list-top-sec .list-top .top-tit-box .right-sort-bx span {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif;
    color: #323333;
  }
  .list-top-sec .list-top .top-tit-box .right-sort-bx p {
    font-size: 14px;
    font-weight: 300;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif;
    color: #646566;
    padding: 0 30px 0 3px;
  }
}
@media screen and (max-width: 576px) {
  .list-top-sec {
    width: 100%;
    padding-top: 20px;
    padding-bottom: 15px;
  }
  .list-top-sec .list-top {
    padding: 0 15px;
  }
  .list-top-sec .list-top .top-pnav-bx p {
    font-size: 12px;
    font-weight: 300;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif;
  }
  .list-top-sec .list-top .top-pnav-bx span {
    font-size: 12px;
    font-weight: 300;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif;
    margin-left: 10px;
    margin-right: 7px;
  }
  .list-top-sec .list-top .top-tit-box {
    margin-top: 20px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 서치 폼 */
    /* 서치 폼 끝 */
  }
  .list-top-sec .list-top .top-tit-box .left-tit-bx {
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .list-top-sec .list-top .top-tit-box .left-tit-bx h3 {
    font-size: 24px;
    font-weight: 500;
    line-height: 30px;
    font-family: "Noto Sans KR", sans-serif;
  }
  .list-top-sec .list-top .top-tit-box .search-box {
    padding: 10px;
  }
  .list-top-sec .list-top .top-tit-box .search-box form span input.search-form {
    padding: 0 10px;
    width: 150px;
    height: 35px;
    font-size: 14px;
    font-weight: 400;
  }
  .list-top-sec .list-top .top-tit-box .search-box form span input.search-form + label {
    padding-left: 20px;
    display: inline-block;
    line-height: 45px;
  }
  .list-top-sec .list-top .top-tit-box .search-box form span input::-webkit-input-placeholder {
    font-size: 12px;
  }
  .list-top-sec .list-top .top-tit-box .search-box form button.search-btn {
    width: 70px;
    height: 35px;
    font-size: 14px;
    font-weight: 300;
  }
  .list-top-sec .list-top .top-tit-box .right-sort-bx {
    display: flex;
    width: 50%;
    flex-flow: row;
    justify-content: center;
    align-items: center;
  }
  .list-top-sec .list-top .top-tit-box .right-sort-bx span {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif;
  }
  .list-top-sec .list-top .top-tit-box .right-sort-bx p {
    font-size: 14px;
    font-weight: 300;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif;
    padding: 0 30px 0 3px;
  }
  .list-top-sec .list-top .top-tit-box .right-sort-bx select::-ms-expand {
    display: none;
  }
  .list-top-sec .list-top .top-tit-box .right-sort-bx select {
    -webkit-appearance: none;
    -moz-appearance: none;
    text-indent: 1px;
    text-overflow: "";
  }
  .list-top-sec .list-top .top-tit-box .right-sort-bx select[data-sell=sellt] {
    width: 200px;
    height: 35px;
    border: 1px solid #afb2b3;
    padding-left: 10px;
    color: #646566;
  }
  .list-top-sec .list-top .top-tit-box .right-sort-bx option[data-opt=optt] {
    font-size: 14px;
    font-weight: 300;
    line-height: 30px;
    font-family: "Noto Sans KR", sans-serif;
  }
  .list-top-sec .list-top .top-tit-box .right-sort-bx select.arrow {
    background-image: linear-gradient(45deg, transparent 50%, gray 50%), linear-gradient(135deg, gray 50%, transparent 50%), linear-gradient(to right, #ccc, #ccc);
    background-position: calc(100% - 20px) calc(1em + 2px), calc(100% - 15px) calc(1em + 2px), calc(100% - 2.5em) 0.5em;
    background-size: 5px 5px, 5px 5px, 1px 1.5em;
    background-repeat: no-repeat;
  }
  .list-top-sec .list-top .top-tit-box .right-sort-bx select.arrow:focus {
    background-image: linear-gradient(45deg, green 50%, transparent 50%), linear-gradient(135deg, transparent 50%, green 50%), linear-gradient(to right, #ccc, #ccc);
    background-position: calc(100% - 15px) 1em, calc(100% - 20px) 1em, calc(100% - 2.5em) 0.5em;
    background-size: 5px 5px, 5px 5px, 1px 1.5em;
    background-repeat: no-repeat;
    border-color: #2865b4;
    outline: 0;
  }
  .list-top-sec .list-top .top-tit-box .right-sort-bx span {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif;
    color: #323333;
  }
  .list-top-sec .list-top .top-tit-box .right-sort-bx p {
    font-size: 14px;
    font-weight: 300;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif;
    color: #646566;
    padding: 0 30px 0 3px;
  }
}
* {
  box-sizing: border-box;
}

#bottom_back_box {
  width: 100%;
  padding-top: 50px;
}
#bottom_back_box .tex-box-back {
  display: flex;
  justify-content: center;
  align-items: center;
}
#bottom_back_box .tex-box-back .back_bt {
  width: 150px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #363434;
  font-size: 14px;
  font-weight: 300;
  line-height: 50px;
  font-family: "Noto Sans KR", sans-serif;
  color: #ffffff;
}

@media screen and (max-width: 992px) {
  #bottom_back_box {
    padding-top: 30px;
  }
  #bottom_back_box .tex-box-back .back_bt {
    width: 150px;
    height: 50px;
    font-size: 14px;
    font-weight: 300;
    line-height: 50px;
    font-family: "Noto Sans KR", sans-serif;
  }
}
@media screen and (max-width: 576px) {
  #bottom_back_box {
    padding-top: 30px;
  }
  #bottom_back_box .tex-box-back .back_bt {
    width: 120px;
    height: 40px;
    font-size: 14px;
    font-weight: 300;
    line-height: 50px;
    font-family: "Noto Sans KR", sans-serif;
  }
}
/*뷰*/
.sp_cont-sec {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.sp_cont-sec .topTex_box {
  width: 100%;
  display: flex;
  border-bottom: 1px solid #e1e3e5;
}
.sp_cont-sec .topTex_box .tex-box {
  display: flex;
  width: 100%;
  height: 60px;
}
.sp_cont-sec .topTex_box .tex-box .tex-box-nav {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 50%;
  height: 100%;
  padding-left: 20px;
  font-size: 14px;
  font-weight: 300;
  line-height: 50px;
  font-family: "Noto Sans KR", sans-serif;
}
.sp_cont-sec .topTex_box .tex-box .tex-box-back {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 50%;
  height: 100%;
  padding-right: 20px;
}
.sp_cont-sec .topTex_box .tex-box .tex-box-back .back_bt {
  width: 150px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #363434;
  font-size: 14px;
  font-weight: 300;
  line-height: 50px;
  font-family: "Noto Sans KR", sans-serif;
  color: #ffffff;
}
.sp_cont-sec .sp_cont_wrap {
  width: 100%;
  padding: 0 15px;
}
.sp_cont-sec .sp_cont_wrap .line_hr {
  width: 100%;
  height: 1px;
  background-color: #ffffff;
}
.sp_cont-sec .sp_cont_wrap .viewBox_contain {
  display: flex;
  flex-direction: column;
  width: 100%;
  /*viewBox */
  /*/////////////////////////////*/
  /*viewDeBox*/
}
.sp_cont-sec .sp_cont_wrap .viewBox_contain .bt-box {
  padding-top: 30px;
  display: flex;
  justify-content: center;
}
.sp_cont-sec .sp_cont_wrap .viewBox_contain .bt-box a {
  font-size: 14px;
  font-weight: 400;
  line-height: 35px;
  font-family: "Noto Sans KR", sans-serif;
  text-align: center;
  color: #ffffff;
  width: 130px;
  height: 35px;
  background-color: #17a2b8;
}
.sp_cont-sec .sp_cont_wrap .viewBox_contain .viewBox {
  width: 100%;
  padding: 20px 10px 30px;
  margin-top: 10px;
  display: flex;
  background-color: #ffffff;
  /*&__right*/
}
.sp_cont-sec .sp_cont_wrap .viewBox_contain .viewBox__left {
  width: 50%;
  /*이미지 */
}
.sp_cont-sec .sp_cont_wrap .viewBox_contain .viewBox__left .igall-sec {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px;
}
.sp_cont-sec .sp_cont_wrap .viewBox_contain .viewBox__left .igall-sec .igall {
  display: flex;
  flex-direction: column;
}
.sp_cont-sec .sp_cont_wrap .viewBox_contain .viewBox__left .igall-sec .igall img {
  max-width: 100%;
  height: auto;
  margin: 10px 0;
}
.sp_cont-sec .sp_cont_wrap .viewBox_contain .viewBox__right {
  width: 50%;
  padding-left: 30px;
  padding-top: 50px;
}
.sp_cont-sec .sp_cont_wrap .viewBox_contain .viewBox__right--title {
  padding: 0 10px;
}
.sp_cont-sec .sp_cont_wrap .viewBox_contain .viewBox__right--title .title_h2 {
  font-size: 24px;
  font-weight: 500;
  line-height: 30px;
  font-family: "Noto Sans KR", sans-serif;
  color: #475a78;
}
.sp_cont-sec .sp_cont_wrap .viewBox_contain .viewBox__right--sum {
  padding: 20px 10px;
  border-bottom: 1px solid #e1e3e5;
}
.sp_cont-sec .sp_cont_wrap .viewBox_contain .viewBox__right--sum .tex_p {
  font-size: 15px;
  font-weight: 300;
  line-height: 24px;
  font-family: "Noto Sans KR", sans-serif;
  color: #323333;
}
.sp_cont-sec .sp_cont_wrap .viewBox_contain .viewBox__right--down {
  display: flex;
  align-items: center;
  padding: 20px 10px;
  border-bottom: 1px solid #e1e3e5;
}
.sp_cont-sec .sp_cont_wrap .viewBox_contain .viewBox__right--down .tex_p {
  font-size: 15px;
  font-weight: 300;
  line-height: 24px;
  font-family: "Noto Sans KR", sans-serif;
  color: #323333;
}
.sp_cont-sec .sp_cont_wrap .viewBox_contain .viewBox__right--down a .down_bt {
  padding: 3px 10px;
  font-size: 13px;
  font-weight: 300;
  line-height: 20px;
  font-family: "Noto Sans KR", sans-serif;
  color: #ffffff;
  background-color: #0a58ca;
  border-top-left-radius: 11px;
  border-top-right-radius: 11px;
  border-bottom-left-radius: 11px;
  border-bottom-right-radius: 11px;
}
.sp_cont-sec .sp_cont_wrap .viewBox_contain .viewBox__right--link {
  display: flex;
  align-items: center;
  padding: 10px;
  border-bottom: 1px solid #e1e3e5;
}
.sp_cont-sec .sp_cont_wrap .viewBox_contain .viewBox__right--link span {
  margin-right: 10px;
  font-size: 15px;
  font-weight: 400;
  line-height: 21px;
  font-family: "Noto Sans KR", sans-serif;
  color: #323333;
}
.sp_cont-sec .sp_cont_wrap .viewBox_contain .viewBox__right--link .link_ul {
  display: flex;
  padding: 10px 0;
}
.sp_cont-sec .sp_cont_wrap .viewBox_contain .viewBox__right--link .link_ul .link_a {
  padding: 10px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 1px;
  font-size: 14px;
  font-weight: 300;
  line-height: 21px;
  font-family: "Noto Sans KR", sans-serif;
  color: #ffffff;
  background-color: #3c3c42;
}
.sp_cont-sec .sp_cont_wrap .viewBox_contain .viewBox__right--btn {
  display: flex;
  align-items: center;
  padding: 30px 10px;
  border-bottom: 1px solid #e1e3e5;
}
.sp_cont-sec .sp_cont_wrap .viewBox_contain .viewBox__right--btn .btn_ul {
  display: flex;
  padding: 10px 0;
}
.sp_cont-sec .sp_cont_wrap .viewBox_contain .viewBox__right--btn .btn_ul .btn_a {
  width: 200px;
  height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 1px;
  font-size: 16px;
  font-weight: 400;
  line-height: 21px;
  font-family: "Noto Sans KR", sans-serif;
  color: #ffffff;
  background-color: #c1496b;
}
.sp_cont-sec .sp_cont_wrap .viewBox_contain .viewDeBox {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.sp_cont-sec .sp_cont_wrap .viewBox_contain .viewDeBox .short-box {
  display: flex;
  flex-direction: column;
  padding: 30px 20px;
  margin-bottom: 30px;
  background-color: #2a2b31;
}
.sp_cont-sec .sp_cont_wrap .viewBox_contain .viewDeBox .short-box p.short_p {
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
  font-family: "Noto Sans KR", sans-serif;
  color: #ffffff;
  margin: 0 !important;
}
.sp_cont-sec .sp_cont_wrap .viewBox_contain .viewDeBox .mid-box {
  display: flex;
  flex-direction: column;
  padding: 40px 20px;
  font-size: 15px;
  font-weight: 300;
  line-height: 24px;
  font-family: "Noto Sans KR", sans-serif;
  color: #4b4c4d;
}
.sp_cont-sec .sp_cont_wrap .viewBox_contain .viewDeBox .mid-box h3 {
  font-size: 21px;
  font-weight: 500;
  line-height: 30px;
  font-family: "Noto Sans KR", sans-serif;
  color: #4b4c4d;
  padding-bottom: 20px;
}
.sp_cont-sec .sp_cont_wrap .viewBox_contain .viewDeBox .mid-p-box {
  display: flex;
  flex-direction: column;
  padding: 50px 30px;
  font-size: 15px;
  font-weight: 300;
  line-height: 24px;
  font-family: "Noto Sans KR", sans-serif;
  color: #4b4c4d;
  border: 10px solid #f5f7fa;
}
.sp_cont-sec .sp_cont_wrap .viewBox_contain .bt-box {
  width: 100%;
  display: flex;
  justify-content: center;
}
.sp_cont-sec .sp_cont_wrap .viewBox_contain .bt-box a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 150px;
  height: 50px;
  background-color: #3f6078;
}
.sp_cont-sec .sp_cont_wrap .viewBox_contain .bt-box a.history_bt, .sp_cont-sec .sp_cont_wrap .viewBox_contain .bt-box a.list_bt {
  background-color: #56a3ac;
}
.sp_cont-sec .sp_cont_wrap .viewBox_contain .bt-box a.prev_btn, .sp_cont-sec .sp_cont_wrap .viewBox_contain .bt-box a.nex_btn {
  background-color: #ac9e56;
}
.sp_cont-sec .sp_cont_wrap .viewBox_contain .bt-box a.prev_btn.non_bt, .sp_cont-sec .sp_cont_wrap .viewBox_contain .bt-box a.nex_btn.non_bt {
  background-color: #8e9393;
}

@media screen and (max-width: 1200px) {
  .sp_cont-sec .topTex_box .tex-box {
    height: 60px;
  }
  .sp_cont-sec .topTex_box .tex-box .tex-box-nav {
    width: 50%;
    padding-left: 20px;
    font-size: 14px;
    font-weight: 300;
    line-height: 50px;
    font-family: "Noto Sans KR", sans-serif;
  }
  .sp_cont-sec .topTex_box .tex-box .tex-box-back {
    width: 50%;
    padding-right: 20px;
  }
  .sp_cont-sec .topTex_box .tex-box .tex-box-back .back_bt {
    width: 150px;
    font-size: 14px;
    font-weight: 300;
    line-height: 50px;
    font-family: "Noto Sans KR", sans-serif;
  }
  .sp_cont-sec .sp_cont_wrap .viewBox_contain {
    /*viewBox */
    /*/////////////////////////////*/
    /*viewDeBox*/
  }
  .sp_cont-sec .sp_cont_wrap .viewBox_contain .bt-box {
    padding-top: 30px;
  }
  .sp_cont-sec .sp_cont_wrap .viewBox_contain .bt-box a {
    font-size: 14px;
    font-weight: 400;
    line-height: 35px;
    font-family: "Noto Sans KR", sans-serif;
    width: 130px;
    height: 35px;
  }
  .sp_cont-sec .sp_cont_wrap .viewBox_contain .viewBox {
    padding: 20px 0 30px;
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    /*&__right*/
  }
  .sp_cont-sec .sp_cont_wrap .viewBox_contain .viewBox__left {
    width: 100%;
    /*이미지 */
  }
  .sp_cont-sec .sp_cont_wrap .viewBox_contain .viewBox__left .igall-sec {
    padding: 0;
  }
  .sp_cont-sec .sp_cont_wrap .viewBox_contain .viewBox__left .igall-sec .igall {
    display: flex;
    flex-direction: column;
  }
  .sp_cont-sec .sp_cont_wrap .viewBox_contain .viewBox__left .igall-sec .igall img {
    max-width: 100%;
    height: auto;
    margin: 10px 0;
  }
  .sp_cont-sec .sp_cont_wrap .viewBox_contain .viewBox__right {
    width: 100%;
    padding-left: 0;
    padding-top: 30px;
  }
  .sp_cont-sec .sp_cont_wrap .viewBox_contain .viewBox__right--title {
    padding: 0 10px;
  }
  .sp_cont-sec .sp_cont_wrap .viewBox_contain .viewBox__right--title .title_h2 {
    font-size: 24px;
    font-weight: 500;
    line-height: 30px;
    font-family: "Noto Sans KR", sans-serif;
  }
  .sp_cont-sec .sp_cont_wrap .viewBox_contain .viewBox__right--sum {
    padding: 20px 10px;
    border-bottom: 1px solid #e1e3e5;
  }
  .sp_cont-sec .sp_cont_wrap .viewBox_contain .viewBox__right--sum .tex_p {
    font-size: 15px;
    font-weight: 300;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif;
  }
  .sp_cont-sec .sp_cont_wrap .viewBox_contain .viewBox__right--down {
    padding: 20px 10px;
  }
  .sp_cont-sec .sp_cont_wrap .viewBox_contain .viewBox__right--down .tex_p {
    font-size: 15px;
    font-weight: 300;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif;
  }
  .sp_cont-sec .sp_cont_wrap .viewBox_contain .viewBox__right--down a .down_bt {
    padding: 3px 10px;
    font-size: 13px;
    font-weight: 300;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif;
  }
  .sp_cont-sec .sp_cont_wrap .viewBox_contain .viewBox__right--link {
    padding: 10px;
  }
  .sp_cont-sec .sp_cont_wrap .viewBox_contain .viewBox__right--link span {
    margin-right: 10px;
    font-size: 15px;
    font-weight: 400;
    line-height: 21px;
    font-family: "Noto Sans KR", sans-serif;
  }
  .sp_cont-sec .sp_cont_wrap .viewBox_contain .viewBox__right--link .link_ul {
    display: flex;
    padding: 10px 0;
  }
  .sp_cont-sec .sp_cont_wrap .viewBox_contain .viewBox__right--link .link_ul .link_a {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 300;
    line-height: 21px;
    font-family: "Noto Sans KR", sans-serif;
  }
  .sp_cont-sec .sp_cont_wrap .viewBox_contain .viewBox__right--btn {
    padding: 30px 10px;
  }
  .sp_cont-sec .sp_cont_wrap .viewBox_contain .viewBox__right--btn .btn_ul {
    padding: 10px 0;
  }
  .sp_cont-sec .sp_cont_wrap .viewBox_contain .viewBox__right--btn .btn_ul .btn_a {
    width: 200px;
    height: 55px;
    margin: 1px;
    font-size: 16px;
    font-weight: 400;
    line-height: 21px;
    font-family: "Noto Sans KR", sans-serif;
  }
  .sp_cont-sec .sp_cont_wrap .viewBox_contain .viewDeBox .short-box {
    padding: 30px 20px;
    margin-bottom: 30px;
  }
  .sp_cont-sec .sp_cont_wrap .viewBox_contain .viewDeBox .short-box p.short_p {
    font-size: 15px;
    font-weight: 400;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif;
  }
  .sp_cont-sec .sp_cont_wrap .viewBox_contain .viewDeBox .mid-box {
    padding: 40px 20px;
    font-size: 15px;
    font-weight: 300;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif;
  }
  .sp_cont-sec .sp_cont_wrap .viewBox_contain .viewDeBox .mid-box h3 {
    font-size: 21px;
    font-weight: 500;
    line-height: 30px;
    font-family: "Noto Sans KR", sans-serif;
    padding-bottom: 20px;
  }
  .sp_cont-sec .sp_cont_wrap .viewBox_contain .viewDeBox .mid-p-box {
    padding: 50px 30px;
    font-size: 15px;
    font-weight: 300;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif;
    border: 10px solid #f5f7fa;
  }
  .sp_cont-sec .sp_cont_wrap .viewBox_contain .bt-box a {
    width: 150px;
    height: 50px;
  }
}
@media screen and (max-width: 768px) {
  .sp_cont-sec .topTex_box .tex-box {
    height: 45px;
  }
  .sp_cont-sec .topTex_box .tex-box .tex-box-nav {
    width: 50%;
    padding-left: 20px;
    font-size: 14px;
    font-weight: 300;
    line-height: 50px;
    font-family: "Noto Sans KR", sans-serif;
  }
  .sp_cont-sec .topTex_box .tex-box .tex-box-back {
    width: 50%;
    padding-right: 0;
  }
  .sp_cont-sec .topTex_box .tex-box .tex-box-back .back_bt {
    width: 80px;
    font-size: 14px;
    font-weight: 300;
    line-height: 50px;
    font-family: "Noto Sans KR", sans-serif;
  }
  .sp_cont-sec .sp_cont_wrap .viewBox_contain {
    /*viewBox */
    /*/////////////////////////////*/
    /*viewDeBox*/
  }
  .sp_cont-sec .sp_cont_wrap .viewBox_contain .bt-box {
    padding-top: 30px;
  }
  .sp_cont-sec .sp_cont_wrap .viewBox_contain .bt-box a {
    font-size: 14px;
    font-weight: 400;
    line-height: 35px;
    font-family: "Noto Sans KR", sans-serif;
    width: 130px;
    height: 35px;
  }
  .sp_cont-sec .sp_cont_wrap .viewBox_contain .viewBox {
    padding: 20px 0 30px;
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    /*&__right*/
  }
  .sp_cont-sec .sp_cont_wrap .viewBox_contain .viewBox__left {
    width: 100%;
    /*이미지 */
  }
  .sp_cont-sec .sp_cont_wrap .viewBox_contain .viewBox__left .igall-sec {
    padding: 0;
  }
  .sp_cont-sec .sp_cont_wrap .viewBox_contain .viewBox__left .igall-sec .igall {
    display: flex;
    flex-direction: column;
  }
  .sp_cont-sec .sp_cont_wrap .viewBox_contain .viewBox__left .igall-sec .igall img {
    max-width: 100%;
    height: auto;
    margin: 10px 0;
  }
  .sp_cont-sec .sp_cont_wrap .viewBox_contain .viewBox__right {
    width: 100%;
    padding-left: 0;
    padding-top: 30px;
  }
  .sp_cont-sec .sp_cont_wrap .viewBox_contain .viewBox__right--title {
    padding: 0 10px;
  }
  .sp_cont-sec .sp_cont_wrap .viewBox_contain .viewBox__right--title .title_h2 {
    font-size: 24px;
    font-weight: 500;
    line-height: 30px;
    font-family: "Noto Sans KR", sans-serif;
  }
  .sp_cont-sec .sp_cont_wrap .viewBox_contain .viewBox__right--sum {
    padding: 20px 10px;
    border-bottom: 1px solid #e1e3e5;
  }
  .sp_cont-sec .sp_cont_wrap .viewBox_contain .viewBox__right--sum .tex_p {
    font-size: 15px;
    font-weight: 300;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif;
  }
  .sp_cont-sec .sp_cont_wrap .viewBox_contain .viewBox__right--down {
    padding: 20px 10px;
  }
  .sp_cont-sec .sp_cont_wrap .viewBox_contain .viewBox__right--down .tex_p {
    font-size: 15px;
    font-weight: 300;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif;
  }
  .sp_cont-sec .sp_cont_wrap .viewBox_contain .viewBox__right--down a .down_bt {
    padding: 3px 10px;
    font-size: 13px;
    font-weight: 300;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif;
  }
  .sp_cont-sec .sp_cont_wrap .viewBox_contain .viewBox__right--link {
    padding: 10px;
  }
  .sp_cont-sec .sp_cont_wrap .viewBox_contain .viewBox__right--link span {
    margin-right: 10px;
    font-size: 15px;
    font-weight: 400;
    line-height: 21px;
    font-family: "Noto Sans KR", sans-serif;
  }
  .sp_cont-sec .sp_cont_wrap .viewBox_contain .viewBox__right--link .link_ul {
    display: flex;
    padding: 10px 0;
  }
  .sp_cont-sec .sp_cont_wrap .viewBox_contain .viewBox__right--link .link_ul .link_a {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 300;
    line-height: 21px;
    font-family: "Noto Sans KR", sans-serif;
  }
  .sp_cont-sec .sp_cont_wrap .viewBox_contain .viewBox__right--btn {
    padding: 30px 10px;
  }
  .sp_cont-sec .sp_cont_wrap .viewBox_contain .viewBox__right--btn .btn_ul {
    padding: 10px 0;
  }
  .sp_cont-sec .sp_cont_wrap .viewBox_contain .viewBox__right--btn .btn_ul .btn_a {
    width: 200px;
    height: 55px;
    margin: 1px;
    font-size: 16px;
    font-weight: 400;
    line-height: 21px;
    font-family: "Noto Sans KR", sans-serif;
  }
  .sp_cont-sec .sp_cont_wrap .viewBox_contain .viewDeBox .short-box {
    padding: 20px;
    margin-bottom: 30px;
  }
  .sp_cont-sec .sp_cont_wrap .viewBox_contain .viewDeBox .short-box p.short_p {
    font-size: 15px;
    font-weight: 400;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif;
  }
  .sp_cont-sec .sp_cont_wrap .viewBox_contain .viewDeBox .mid-box {
    padding: 30px 10px;
    font-size: 15px;
    font-weight: 300;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif;
  }
  .sp_cont-sec .sp_cont_wrap .viewBox_contain .viewDeBox .mid-box h3 {
    font-size: 21px;
    font-weight: 500;
    line-height: 30px;
    font-family: "Noto Sans KR", sans-serif;
    padding-bottom: 20px;
  }
  .sp_cont-sec .sp_cont_wrap .viewBox_contain .viewDeBox .mid-p-box {
    padding: 20px;
    font-size: 15px;
    font-weight: 300;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif;
    border: 10px solid #f5f7fa;
  }
  .sp_cont-sec .sp_cont_wrap .viewBox_contain .bt-box a {
    width: 150px;
    height: 50px;
  }
}
.pdCont-sec {
  overflow: hidden;
  margin-top: 50px;
}
.pdCont-sec .pdCont_wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 0 15px;
}
.pdCont-sec .pdCont_wrap .list_topBox {
  align-items: center;
  padding: 10px;
  width: 100%;
}
.pdCont-sec .pdCont_wrap .list_topBox .topBox {
  display: flex;
  padding: 20px 0;
}
.pdCont-sec .pdCont_wrap .list_topBox .topBox__left {
  width: 50%;
  display: flex;
}
.pdCont-sec .pdCont_wrap .list_topBox .topBox__left--tagA {
  padding: 7px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 1px;
  font-size: 14px;
  font-weight: 300;
  line-height: 21px;
  font-family: "Noto Sans KR", sans-serif;
  color: #323333;
  border: 1px solid #afb2b3;
}
.pdCont-sec .pdCont_wrap .list_topBox .topBox__right {
  width: 50%;
  display: flex;
  justify-content: flex-end;
}
.pdCont-sec .pdCont_wrap .list_topBox .topBox__right--tagB {
  padding: 5px 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 1px;
  font-size: 14px;
  font-weight: 300;
  line-height: 15px;
  font-family: "Noto Sans KR", sans-serif;
  color: #323333;
  border-top-left-radius: 13px;
  border-top-right-radius: 13px;
  border-bottom-left-radius: 13px;
  border-bottom-right-radius: 13px;
  border: 1px solid #afb2b3;
}
.pdCont-sec .pdCont_wrap .con-wrap {
  width: 100%;
}
.pdCont-sec .pdCont_wrap .con-wrap .items-box {
  position: relative;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.pdCont-sec .pdCont_wrap .con-wrap .items-box .best-box {
  width: calc(25% - 20px);
  display: flex;
  flex-direction: column;
  position: relative;
  margin: 10px;
  background-color: white;
  padding: 20px;
  margin-bottom: 30px;
  border: 1px solid #e1e3e5;
}
.pdCont-sec .pdCont_wrap .con-wrap .items-box .best-box .item_a {
  width: 100%;
}
.pdCont-sec .pdCont_wrap .con-wrap .items-box .best-box .item_a .img-bx {
  position: relative;
}
.pdCont-sec .pdCont_wrap .con-wrap .items-box .best-box .item_a .img-bx .item_wrap {
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 300px;
}
.pdCont-sec .pdCont_wrap .con-wrap .items-box .best-box .item_a .img-bx .item_wrap .item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #95DC41;
  transition: all 1s cubic-bezier(0.1, 0.98, 0.33, 0.97);
}
.pdCont-sec .pdCont_wrap .con-wrap .items-box .best-box .item_a .img-bx .item_wrap .item.tem_1 {
  transform: translateX(100%);
  opacity: 0;
}
.pdCont-sec .pdCont_wrap .con-wrap .items-box .best-box .item_a .img-bx .item_wrap .item.tem_2 {
  transform: translateX(0);
  opacity: 1;
}
.pdCont-sec .pdCont_wrap .con-wrap .items-box .best-box .item_a .img-bx .item_wrap:hover .item.tem_1 {
  transform: translateX(0);
  opacity: 1;
}
.pdCont-sec .pdCont_wrap .con-wrap .items-box .best-box .item_a .img-bx .item_wrap:hover .item.tem_2 {
  transform: translateX(-100%);
  opacity: 0;
}
.pdCont-sec .pdCont_wrap .con-wrap .items-box .best-box .item_tex_box {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 20px 0 0 !important;
}
.pdCont-sec .pdCont_wrap .con-wrap .items-box .best-box .item_tex_box .tex_h3 {
  font-size: 16px;
  font-weight: 500;
  line-height: 32px;
  font-family: "Noto Sans KR", sans-serif;
  color: #323333;
}
.pdCont-sec .pdCont_wrap .con-wrap .items-box .best-box .item_tex_box .tex_p {
  font-size: 15px;
  font-weight: 300;
  line-height: 24px;
  font-family: "Noto Sans KR", sans-serif;
}
.pdCont-sec .pdCont_wrap .con-wrap .items-box .best-box .item_tex_box .price_bx {
  display: flex;
  margin-top: 10px;
}
.pdCont-sec .pdCont_wrap .con-wrap .items-box .best-box .item_tex_box .price_bx .tex_h4 {
  font-size: 17px;
  font-weight: 500;
  line-height: 24px;
  font-family: "Noto Sans KR", sans-serif;
}
.pdCont-sec .pdCont_wrap .con-wrap .items-box .best-box .item_tex_box .price_bx .tex_h4_del {
  margin-left: 10px;
  font-size: 15px;
  font-weight: 300;
  line-height: 24px;
  font-family: "Noto Sans KR", sans-serif;
  color: #7d7f80;
}
.pdCont-sec .pdCont_wrap .con-wrap .items-box .best-box .item_tex_box .price_bx .tag_new span {
  font-size: 13px;
  font-weight: 300;
  line-height: 13px;
  font-family: "Noto Sans KR", sans-serif;
  color: #ffffff;
  padding: 3px 10px;
  background-color: #0a58ca;
  border-top-left-radius: 9px;
  border-top-right-radius: 9px;
  border-bottom-left-radius: 9px;
  border-bottom-right-radius: 9px;
}
.pdCont-sec .pdCont_wrap .con-wrap .items-box .best-box .item_tex_box .price_bx .tag_hot {
  margin-left: 10px;
}
.pdCont-sec .pdCont_wrap .con-wrap .items-box .best-box .item_tex_box .price_bx .tag_hot span {
  font-size: 13px;
  font-weight: 300;
  line-height: 13px;
  font-family: "Noto Sans KR", sans-serif;
  color: #ffffff;
  padding: 3px 10px;
  background-color: #ad5498;
  border-top-left-radius: 9px;
  border-top-right-radius: 9px;
  border-bottom-left-radius: 9px;
  border-bottom-right-radius: 9px;
}

@media screen and (max-width: 1500px) {
  .pdCont-sec .pdCont_wrap {
    padding: 0 15px;
  }
  .pdCont-sec .pdCont_wrap .list_topBox {
    padding: 10px;
  }
  .pdCont-sec .pdCont_wrap .list_topBox .topBox {
    padding: 20px 0;
  }
  .pdCont-sec .pdCont_wrap .list_topBox .topBox__left {
    width: 50%;
  }
  .pdCont-sec .pdCont_wrap .list_topBox .topBox__left--tagA {
    padding: 7px 20px;
    margin: 1px;
    font-size: 14px;
    font-weight: 300;
    line-height: 21px;
    font-family: "Noto Sans KR", sans-serif;
  }
  .pdCont-sec .pdCont_wrap .list_topBox .topBox__right {
    width: 50%;
  }
  .pdCont-sec .pdCont_wrap .list_topBox .topBox__right--tagB {
    padding: 5px 15px;
    margin: 1px;
    font-size: 14px;
    font-weight: 300;
    line-height: 15px;
    font-family: "Noto Sans KR", sans-serif;
  }
  .pdCont-sec .pdCont_wrap .con-wrap {
    width: 100%;
  }
  .pdCont-sec .pdCont_wrap .con-wrap .items-box .best-box {
    width: calc(25% - 14px);
    padding: 20px;
    margin: 7px;
    margin-bottom: 20px;
  }
  .pdCont-sec .pdCont_wrap .con-wrap .items-box .best-box .item_a .img-bx .item_wrap {
    height: 250px;
  }
  .pdCont-sec .pdCont_wrap .con-wrap .items-box .best-box .item_tex_box {
    padding: 20px 0 0 !important;
  }
  .pdCont-sec .pdCont_wrap .con-wrap .items-box .best-box .item_tex_box .tex_h3 {
    font-size: 16px;
    font-weight: 500;
    line-height: 32px;
    font-family: "Noto Sans KR", sans-serif;
  }
  .pdCont-sec .pdCont_wrap .con-wrap .items-box .best-box .item_tex_box .tex_p {
    font-size: 15px;
    font-weight: 300;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif;
  }
  .pdCont-sec .pdCont_wrap .con-wrap .items-box .best-box .item_tex_box .price_bx {
    margin-top: 10px;
  }
  .pdCont-sec .pdCont_wrap .con-wrap .items-box .best-box .item_tex_box .price_bx .tex_h4 {
    font-size: 17px;
    font-weight: 500;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif;
  }
  .pdCont-sec .pdCont_wrap .con-wrap .items-box .best-box .item_tex_box .price_bx .tex_h4_del {
    margin-left: 10px;
    font-size: 15px;
    font-weight: 300;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif;
  }
  .pdCont-sec .pdCont_wrap .con-wrap .items-box .best-box .item_tex_box .price_bx .tag_new span {
    font-size: 13px;
    font-weight: 300;
    line-height: 13px;
    font-family: "Noto Sans KR", sans-serif;
    padding: 3px 10px;
  }
  .pdCont-sec .pdCont_wrap .con-wrap .items-box .best-box .item_tex_box .price_bx .tag_hot {
    margin-left: 10px;
  }
  .pdCont-sec .pdCont_wrap .con-wrap .items-box .best-box .item_tex_box .price_bx .tag_hot span {
    font-size: 13px;
    font-weight: 300;
    line-height: 13px;
    font-family: "Noto Sans KR", sans-serif;
    color: #ffffff;
    padding: 3px 10px;
  }
}
@media screen and (max-width: 1200px) {
  .pdCont-sec .pdCont_wrap {
    padding: 0 15px;
  }
  .pdCont-sec .pdCont_wrap .list_topBox {
    padding: 10px;
  }
  .pdCont-sec .pdCont_wrap .list_topBox .topBox {
    padding: 20px 0;
  }
  .pdCont-sec .pdCont_wrap .list_topBox .topBox__left {
    width: 50%;
  }
  .pdCont-sec .pdCont_wrap .list_topBox .topBox__left--tagA {
    padding: 7px 20px;
    margin: 1px;
    font-size: 14px;
    font-weight: 300;
    line-height: 21px;
    font-family: "Noto Sans KR", sans-serif;
  }
  .pdCont-sec .pdCont_wrap .list_topBox .topBox__right {
    width: 50%;
  }
  .pdCont-sec .pdCont_wrap .list_topBox .topBox__right--tagB {
    padding: 5px 15px;
    margin: 1px;
    font-size: 14px;
    font-weight: 300;
    line-height: 15px;
    font-family: "Noto Sans KR", sans-serif;
  }
  .pdCont-sec .pdCont_wrap .con-wrap {
    width: 100%;
  }
  .pdCont-sec .pdCont_wrap .con-wrap .items-box .best-box {
    width: calc(33.3333333333% - 10px);
    padding: 20px;
    margin: 5px;
    margin-bottom: 20px;
  }
  .pdCont-sec .pdCont_wrap .con-wrap .items-box .best-box .item_a .img-bx .item_wrap {
    height: 260px;
  }
  .pdCont-sec .pdCont_wrap .con-wrap .items-box .best-box .item_tex_box {
    padding: 20px 0 0 !important;
  }
  .pdCont-sec .pdCont_wrap .con-wrap .items-box .best-box .item_tex_box .tex_h3 {
    font-size: 16px;
    font-weight: 500;
    line-height: 32px;
    font-family: "Noto Sans KR", sans-serif;
  }
  .pdCont-sec .pdCont_wrap .con-wrap .items-box .best-box .item_tex_box .tex_p {
    font-size: 15px;
    font-weight: 300;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif;
  }
  .pdCont-sec .pdCont_wrap .con-wrap .items-box .best-box .item_tex_box .price_bx {
    margin-top: 10px;
  }
  .pdCont-sec .pdCont_wrap .con-wrap .items-box .best-box .item_tex_box .price_bx .tex_h4 {
    font-size: 17px;
    font-weight: 500;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif;
  }
  .pdCont-sec .pdCont_wrap .con-wrap .items-box .best-box .item_tex_box .price_bx .tex_h4_del {
    margin-left: 10px;
    font-size: 15px;
    font-weight: 300;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif;
  }
  .pdCont-sec .pdCont_wrap .con-wrap .items-box .best-box .item_tex_box .price_bx .tag_new span {
    font-size: 13px;
    font-weight: 300;
    line-height: 13px;
    font-family: "Noto Sans KR", sans-serif;
    padding: 3px 10px;
  }
  .pdCont-sec .pdCont_wrap .con-wrap .items-box .best-box .item_tex_box .price_bx .tag_hot {
    margin-left: 10px;
  }
  .pdCont-sec .pdCont_wrap .con-wrap .items-box .best-box .item_tex_box .price_bx .tag_hot span {
    font-size: 13px;
    font-weight: 300;
    line-height: 13px;
    font-family: "Noto Sans KR", sans-serif;
    padding: 3px 10px;
  }
}
@media screen and (max-width: 992px) {
  .pdCont-sec .pdCont_wrap {
    padding: 0 15px;
  }
  .pdCont-sec .pdCont_wrap .list_topBox {
    padding: 10px;
  }
  .pdCont-sec .pdCont_wrap .list_topBox .topBox {
    padding: 20px 0;
  }
  .pdCont-sec .pdCont_wrap .list_topBox .topBox__left {
    width: 50%;
  }
  .pdCont-sec .pdCont_wrap .list_topBox .topBox__left--tagA {
    padding: 7px 20px;
    margin: 1px;
    font-size: 14px;
    font-weight: 300;
    line-height: 21px;
    font-family: "Noto Sans KR", sans-serif;
  }
  .pdCont-sec .pdCont_wrap .list_topBox .topBox__right {
    width: 50%;
  }
  .pdCont-sec .pdCont_wrap .list_topBox .topBox__right--tagB {
    padding: 5px 15px;
    margin: 1px;
    font-size: 14px;
    font-weight: 300;
    line-height: 15px;
    font-family: "Noto Sans KR", sans-serif;
  }
  .pdCont-sec .pdCont_wrap .con-wrap {
    width: 100%;
  }
  .pdCont-sec .pdCont_wrap .con-wrap .items-box .best-box {
    width: calc(50% - 10px);
    padding: 20px;
    margin-bottom: 20px;
  }
  .pdCont-sec .pdCont_wrap .con-wrap .items-box .best-box .item_a .img-bx .item_wrap {
    height: 280px;
  }
  .pdCont-sec .pdCont_wrap .con-wrap .items-box .best-box .item_tex_box {
    padding: 20px 0 0 !important;
  }
  .pdCont-sec .pdCont_wrap .con-wrap .items-box .best-box .item_tex_box .tex_h3 {
    font-size: 16px;
    font-weight: 500;
    line-height: 32px;
    font-family: "Noto Sans KR", sans-serif;
  }
  .pdCont-sec .pdCont_wrap .con-wrap .items-box .best-box .item_tex_box .tex_p {
    font-size: 15px;
    font-weight: 300;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif;
  }
  .pdCont-sec .pdCont_wrap .con-wrap .items-box .best-box .item_tex_box .price_bx {
    margin-top: 10px;
  }
  .pdCont-sec .pdCont_wrap .con-wrap .items-box .best-box .item_tex_box .price_bx .tex_h4 {
    font-size: 17px;
    font-weight: 500;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif;
  }
  .pdCont-sec .pdCont_wrap .con-wrap .items-box .best-box .item_tex_box .price_bx .tex_h4_del {
    margin-left: 10px;
    font-size: 15px;
    font-weight: 300;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif;
  }
  .pdCont-sec .pdCont_wrap .con-wrap .items-box .best-box .item_tex_box .price_bx .tag_new span {
    font-size: 13px;
    font-weight: 300;
    line-height: 13px;
    font-family: "Noto Sans KR", sans-serif;
    padding: 3px 10px;
  }
  .pdCont-sec .pdCont_wrap .con-wrap .items-box .best-box .item_tex_box .price_bx .tag_hot {
    margin-left: 10px;
  }
  .pdCont-sec .pdCont_wrap .con-wrap .items-box .best-box .item_tex_box .price_bx .tag_hot span {
    font-size: 13px;
    font-weight: 300;
    line-height: 13px;
    font-family: "Noto Sans KR", sans-serif;
    padding: 3px 10px;
  }
}
@media screen and (max-width: 768px) {
  .pdCont-sec .pdCont_wrap {
    padding: 0 15px;
  }
  .pdCont-sec .pdCont_wrap .list_topBox {
    padding: 10px;
  }
  .pdCont-sec .pdCont_wrap .list_topBox .topBox {
    padding: 20px 0;
  }
  .pdCont-sec .pdCont_wrap .list_topBox .topBox__left {
    width: 50%;
  }
  .pdCont-sec .pdCont_wrap .list_topBox .topBox__left--tagA {
    padding: 7px 20px;
    margin: 1px;
    font-size: 14px;
    font-weight: 300;
    line-height: 21px;
    font-family: "Noto Sans KR", sans-serif;
  }
  .pdCont-sec .pdCont_wrap .list_topBox .topBox__right {
    width: 50%;
  }
  .pdCont-sec .pdCont_wrap .list_topBox .topBox__right--tagB {
    padding: 5px 15px;
    margin: 1px;
    font-size: 14px;
    font-weight: 300;
    line-height: 15px;
    font-family: "Noto Sans KR", sans-serif;
  }
  .pdCont-sec .pdCont_wrap .con-wrap {
    width: 100%;
  }
  .pdCont-sec .pdCont_wrap .con-wrap .items-box .best-box {
    width: calc(50% - 10px);
    padding: 10px;
    margin-bottom: 10px;
  }
  .pdCont-sec .pdCont_wrap .con-wrap .items-box .best-box .item_a .img-bx .item_wrap {
    height: 210px;
  }
  .pdCont-sec .pdCont_wrap .con-wrap .items-box .best-box .item_tex_box {
    padding: 20px 0 0 !important;
  }
  .pdCont-sec .pdCont_wrap .con-wrap .items-box .best-box .item_tex_box .tex_h3 {
    font-size: 16px;
    font-weight: 500;
    line-height: 32px;
    font-family: "Noto Sans KR", sans-serif;
  }
  .pdCont-sec .pdCont_wrap .con-wrap .items-box .best-box .item_tex_box .tex_p {
    font-size: 15px;
    font-weight: 300;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif;
  }
  .pdCont-sec .pdCont_wrap .con-wrap .items-box .best-box .item_tex_box .price_bx {
    margin-top: 10px;
  }
  .pdCont-sec .pdCont_wrap .con-wrap .items-box .best-box .item_tex_box .price_bx .tex_h4 {
    font-size: 17px;
    font-weight: 500;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif;
  }
  .pdCont-sec .pdCont_wrap .con-wrap .items-box .best-box .item_tex_box .price_bx .tex_h4_del {
    margin-left: 10px;
    font-size: 15px;
    font-weight: 300;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif;
  }
  .pdCont-sec .pdCont_wrap .con-wrap .items-box .best-box .item_tex_box .price_bx .tag_new span {
    font-size: 13px;
    font-weight: 300;
    line-height: 13px;
    font-family: "Noto Sans KR", sans-serif;
    padding: 3px 10px;
  }
  .pdCont-sec .pdCont_wrap .con-wrap .items-box .best-box .item_tex_box .price_bx .tag_hot {
    margin-left: 10px;
  }
  .pdCont-sec .pdCont_wrap .con-wrap .items-box .best-box .item_tex_box .price_bx .tag_hot span {
    font-size: 13px;
    font-weight: 300;
    line-height: 13px;
    font-family: "Noto Sans KR", sans-serif;
    padding: 3px 10px;
  }
}
@media screen and (max-width: 576px) {
  .pdCont-sec {
    margin-top: 40px;
  }
  .pdCont-sec .pdCont_wrap {
    padding: 0 15px;
  }
  .pdCont-sec .pdCont_wrap .list_topBox {
    padding: 10px;
  }
  .pdCont-sec .pdCont_wrap .list_topBox .topBox {
    padding: 20px 0;
  }
  .pdCont-sec .pdCont_wrap .list_topBox .topBox__left {
    width: 50%;
  }
  .pdCont-sec .pdCont_wrap .list_topBox .topBox__left--tagA {
    padding: 7px 20px;
    margin: 1px;
    font-size: 14px;
    font-weight: 300;
    line-height: 21px;
    font-family: "Noto Sans KR", sans-serif;
  }
  .pdCont-sec .pdCont_wrap .list_topBox .topBox__right {
    width: 50%;
  }
  .pdCont-sec .pdCont_wrap .list_topBox .topBox__right--tagB {
    padding: 5px 15px;
    margin: 1px;
    font-size: 14px;
    font-weight: 300;
    line-height: 15px;
    font-family: "Noto Sans KR", sans-serif;
  }
  .pdCont-sec .pdCont_wrap .con-wrap {
    width: 100%;
  }
  .pdCont-sec .pdCont_wrap .con-wrap .items-box .best-box {
    width: 100%;
    padding: 20px;
    margin-bottom: 20px;
  }
  .pdCont-sec .pdCont_wrap .con-wrap .items-box .best-box .item_a .img-bx .item_wrap {
    height: 300px;
  }
  .pdCont-sec .pdCont_wrap .con-wrap .items-box .best-box .item_tex_box {
    padding: 20px 0 0 !important;
  }
  .pdCont-sec .pdCont_wrap .con-wrap .items-box .best-box .item_tex_box .tex_h3 {
    font-size: 16px;
    font-weight: 500;
    line-height: 32px;
    font-family: "Noto Sans KR", sans-serif;
  }
  .pdCont-sec .pdCont_wrap .con-wrap .items-box .best-box .item_tex_box .tex_p {
    font-size: 15px;
    font-weight: 300;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif;
  }
  .pdCont-sec .pdCont_wrap .con-wrap .items-box .best-box .item_tex_box .price_bx {
    margin-top: 10px;
  }
  .pdCont-sec .pdCont_wrap .con-wrap .items-box .best-box .item_tex_box .price_bx .tex_h4 {
    font-size: 17px;
    font-weight: 500;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif;
  }
  .pdCont-sec .pdCont_wrap .con-wrap .items-box .best-box .item_tex_box .price_bx .tex_h4_del {
    margin-left: 10px;
    font-size: 15px;
    font-weight: 300;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif;
  }
  .pdCont-sec .pdCont_wrap .con-wrap .items-box .best-box .item_tex_box .price_bx .tag_new span {
    font-size: 13px;
    font-weight: 300;
    line-height: 13px;
    font-family: "Noto Sans KR", sans-serif;
    padding: 3px 10px;
  }
  .pdCont-sec .pdCont_wrap .con-wrap .items-box .best-box .item_tex_box .price_bx .tag_hot {
    margin-left: 10px;
  }
  .pdCont-sec .pdCont_wrap .con-wrap .items-box .best-box .item_tex_box .price_bx .tag_hot span {
    font-size: 13px;
    font-weight: 300;
    line-height: 13px;
    font-family: "Noto Sans KR", sans-serif;
    padding: 3px 10px;
  }
}

/*# sourceMappingURL=sp_product.css.map */
