.yeobaek-main {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.index-hover-section {
  position: relative;
  width: 100%;
  margin-bottom: 140px;
  display: flex;
  flex-direction: row;
  overflow-x: clip;
}
@media (max-width: 1280px) {
  .index-hover-section {
    margin-bottom: 100px;
  }
}
@media (max-width: 768px) {
  .index-hover-section {
    margin-bottom: 70px;
  }
}
.index-hover-section .swiper-wrapper {
  width: 100%;
  height: auto;
}
.index-hover-section .swiper-wrapper > article {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 620/877;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  opacity: 1;
  transform: scale(1);
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}
@media (max-width: 1280px) {
  .index-hover-section .swiper-wrapper > article {
    padding: 40px 24px;
    opacity: 1;
  }
}
@media (max-width: 768px) {
  .index-hover-section .swiper-wrapper > article {
    padding: 40px 16px;
  }
}
.index-hover-section .swiper-wrapper > article:hover {
  opacity: 1;
  transform: scale(1.05);
  box-shadow: 0 0 16px black;
  z-index: 3;
}
@media (max-width: 1280px) {
  .index-hover-section .swiper-wrapper > article:hover {
    transform: scale(1);
    box-shadow: none;
    z-index: auto;
  }
}
.index-hover-section .swiper-wrapper > article::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent, transparent, transparent, transparent, rgba(0, 0, 0, 0.8));
}
.index-hover-section .swiper-wrapper > article .content-box {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 3;
}
.index-hover-section .swiper-wrapper > article .content-box > b {
  font-size: 32px;
  font-weight: 700;
  color: white;
  word-break: keep-all;
}
@media (max-width: 1280px) {
  .index-hover-section .swiper-wrapper > article .content-box > b {
    font-size: 24px;
  }
}
@media (max-width: 768px) {
  .index-hover-section .swiper-wrapper > article .content-box > b {
    font-size: 20px;
  }
}
.index-hover-section .swiper-wrapper > article .content-box > p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.3;
  color: white;
  word-break: keep-all;
}
@media (max-width: 1280px) {
  .index-hover-section .swiper-wrapper > article .content-box > p {
    font-size: 13px;
  }
}
.index-hover-section .swiper-navigation {
  position: absolute;
  left: 0;
  top: 50%;
  right: auto;
  bottom: auto;
  width: 100%;
  padding: 0 1rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  z-index: 5;
}
.index-hover-section .swiper-navigation .swiper-custom-prev, .index-hover-section .swiper-navigation .swiper-custom-next {
  width: 48px;
  height: 48px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  border-radius: 5000rem;
  box-shadow: 0 0 8px -2px rgba(0, 0, 0, 0.3), inset 0 0 3px -1px rgba(255, 255, 255, 0.5);
}
.index-hover-section .swiper-navigation .swiper-custom-prev > svg, .index-hover-section .swiper-navigation .swiper-custom-next > svg {
  width: 50%;
  height: auto;
  fill: black;
}
.index-hover-section .swiper-pagination {
  position: absolute;
  left: 0;
  top: auto;
  right: auto;
  bottom: 1rem;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  z-index: 5;
}
.index-hover-section .swiper-pagination .swiper-pagination-bullet {
  fill: black;
}
.index-hover-section .move-to-shop {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 12px 26px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 300;
  line-height: 1;
  color: white;
  word-break: keep-all;
  white-space: nowrap;
  background: #2D2D2D;
  z-index: 3;
}
@media (max-width: 1280px) {
  .index-hover-section .move-to-shop {
    padding: 8px 20px;
    font-size: 13px;
  }
}
.index-hover-section .move-to-shop > svg {
  flex: 0 0 auto;
  width: auto;
  height: 14px;
  fill: white;
}

.index-common-section {
  width: 100%;
  margin-bottom: 140px;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
@media (max-width: 1280px) {
  .index-common-section {
    margin-bottom: 100px;
  }
}
@media (max-width: 768px) {
  .index-common-section {
    margin-bottom: 70px;
  }
}
.index-common-section .container {
  width: 95%;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
@media (max-width: 1280px) {
  .index-common-section .container {
    gap: 32px;
  }
}
.index-common-section .container .sec-head {
  width: 100%;
  padding-bottom: 40px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #aaa;
}
@media (max-width: 1280px) {
  .index-common-section .container .sec-head {
    padding-bottom: 24px;
  }
}
@media (max-width: 640px) {
  .index-common-section .container .sec-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}
.index-common-section .container .sec-head .head-tabs {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 50px;
}
@media (max-width: 1280px) {
  .index-common-section .container .sec-head .head-tabs {
    gap: 32px;
  }
}
.index-common-section .container .sec-head .head-tabs .item {
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  color: #aaa;
  word-break: keep-all;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}
@media (max-width: 1280px) {
  .index-common-section .container .sec-head .head-tabs .item {
    font-size: 16px;
  }
}
.index-common-section .container .sec-head .head-tabs .item.active, .index-common-section .container .sec-head .head-tabs .item:hover {
  color: black;
}
.index-common-section .container .sec-head .sec-tit {
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  color: black;
  word-break: keep-all;
}
@media (max-width: 768px) {
  .index-common-section .container .sec-head .sec-tit {
    font-size: 16px;
  }
}
.index-common-section .container .sec-head .view-more {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}
@media (max-width: 1280px) {
  .index-common-section .container .sec-head .view-more {
    gap: 8px;
  }
}
@media (max-width: 768px) {
  .index-common-section .container .sec-head .view-more {
    align-self: flex-end;
  }
}
.index-common-section .container .sec-head .view-more > span {
  font-size: 16px;
  line-height: 1;
  color: #707070;
}
@media (max-width: 1280px) {
  .index-common-section .container .sec-head .view-more > span {
    font-size: 14px;
  }
}
.index-common-section .container .sec-head .view-more > svg {
  flex: 0 0 auto;
  width: auto;
  height: 16px;
  fill: #707070;
}
@media (max-width: 1280px) {
  .index-common-section .container .sec-head .view-more > svg {
    height: 14px;
  }
}
.index-common-section .container .sec-body {
  width: 100%;
}

.index-arts-latest {
  position: relative;
  width: 100%;
  padding-bottom: 24px;
  overflow: hidden;
}
.index-arts-latest .art-list {
  width: 100%;
  align-items: flex-start;
}
.index-arts-latest .art-list .item {
  width: 100%;
  transition: all 0.2s ease-in-out;
}
.index-arts-latest .art-list .item:hover {
  transform: scale(1.05);
}
.index-arts-latest .art-list .item.empty {
  height: 120px;
  border: 1px solid #f0f0f0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  font-weight: 500;
  color: #464646;
  word-break: keep-all;
  text-align: center;
}
@media (max-width: 1024px) {
  .index-arts-latest .art-list .item {
    width: 100%;
    grid-column: span 2;
  }
  .index-arts-latest .art-list .item:nth-of-type(4) {
    grid-column: 2/span 2;
  }
  .index-arts-latest .art-list .item:nth-of-type(5) {
    grid-column: span 2;
  }
}
@media (max-width: 768px) {
  .index-arts-latest .art-list .item:nth-of-type(4) {
    grid-column: span 2;
  }
  .index-arts-latest .art-list .item:nth-of-type(5) {
    grid-column: 2/span 2;
  }
}
.index-arts-latest .art-list .item > a {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
@media (max-width: 1280px) {
  .index-arts-latest .art-list .item > a {
    gap: 20px;
  }
}
.index-arts-latest .art-list .item > a .art-thumb {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  overflow: hidden;
}
.index-arts-latest .art-list .item > a .art-thumb > img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.index-arts-latest .art-list .item > a .art-info-box {
  position: relative;
  width: 100%;
  padding: 0 8px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 768px) {
  .index-arts-latest .art-list .item > a .art-info-box {
    padding: 0;
  }
}
.index-arts-latest .art-list .item > a .art-info-box .like {
  position: absolute;
  right: 0;
  top: 0;
  width: 28px;
  height: 28px;
  border: none;
  background: transparent;
}
@media (max-width: 1280px) {
  .index-arts-latest .art-list .item > a .art-info-box .like {
    width: 24px;
    height: 24px;
  }
}
.index-arts-latest .art-list .item > a .art-info-box .like > svg {
  width: 100%;
  height: 100%;
  fill: #FF4D53;
}
.index-arts-latest .art-list .item > a .art-info-box .like > svg:nth-of-type(1) {
  display: block;
}
.index-arts-latest .art-list .item > a .art-info-box .like > svg:nth-of-type(2) {
  display: none;
}
.index-arts-latest .art-list .item > a .art-info-box .like.active > svg:nth-of-type(1) {
  display: none;
}
.index-arts-latest .art-list .item > a .art-info-box .like.active > svg:nth-of-type(2) {
  display: block;
}
.index-arts-latest .art-list .item > a .art-info-box .art-name {
  margin-bottom: 10px;
  padding-right: 22px;
  font-size: 20px;
  font-weight: 800;
  color: black;
  word-break: break-all;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 1280px) {
  .index-arts-latest .art-list .item > a .art-info-box .art-name {
    margin-bottom: 8px;
    padding-right: 18px;
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .index-arts-latest .art-list .item > a .art-info-box .art-name {
    padding-right: 26px;
  }
}
.index-arts-latest .art-list .item > a .art-info-box .art-desc {
  margin-bottom: 10px;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.6;
  color: black;
  word-break: keep-all;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 1280px) {
  .index-arts-latest .art-list .item > a .art-info-box .art-desc {
    margin-bottom: 8px;
    font-size: 13px;
  }
}
.index-arts-latest .art-list .item > a .art-info-box .art-price {
  font-size: 20px;
  font-weight: 800;
  color: black;
  word-break: keep-all;
}
@media (max-width: 1280px) {
  .index-arts-latest .art-list .item > a .art-info-box .art-price {
    font-size: 16px;
  }
}
.index-arts-latest .art-list .item > a .art-info-box .sold-out {
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
}
.index-arts-latest .art-list .item > a .art-info-box .sold-out .circle {
  width: 1rem;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 10000rem;
  background: #FF4D53;
}
.index-arts-latest .swiper-pagination {
  bottom: 0 !important;
}
.index-arts-latest .swiper-pagination .swiper-pagination-bullet {
  background: black;
}
.index-arts-latest .swiper-navigation {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  z-index: 3;
}
.index-arts-latest .swiper-navigation > div {
  width: 36px;
  height: 36px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  border-radius: 5000rem;
}

.index-now-on {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
@media (max-width: 1280px) {
  .index-now-on {
    gap: 32px;
  }
}
.index-now-on .nowon-tabs {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, auto);
  justify-content: center;
  align-items: center;
  gap: 50px;
}
@media (max-width: 1280px) {
  .index-now-on .nowon-tabs {
    gap: 24px;
  }
}
@media (max-width: 1024px) {
  .index-now-on .nowon-tabs {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 768px) {
  .index-now-on .nowon-tabs {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 16px;
  }
}
@media (max-width: 480px) {
  .index-now-on .nowon-tabs {
    grid-template-columns: repeat(2, 1fr);
  }
}
.index-now-on .nowon-tabs .item {
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
  color: #707070;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}
@media (max-width: 1280px) {
  .index-now-on .nowon-tabs .item {
    font-size: 16px;
  }
}
@media (max-width: 1024px) {
  .index-now-on .nowon-tabs .item {
    text-align: center;
  }
}
@media (max-width: 768px) {
  .index-now-on .nowon-tabs .item {
    font-size: 14px;
  }
}
.index-now-on .nowon-tabs .item:hover, .index-now-on .nowon-tabs .item.active {
  color: black;
}
.index-now-on .total_content {
  width: 100%;
}
.index-now-on .nowon-body {
  width: 100%;
  height: 600px;
  padding: 48px 70px;
  display: flex;
  flex-direction: row;
  align-items: center;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
@media (max-width: 1280px) {
  .index-now-on .nowon-body {
    height: 540px;
    padding: 40px;
  }
}
@media (max-width: 768px) {
  .index-now-on .nowon-body {
    height: 480px;
    padding: 32px;
  }
}
@media (max-width: 480px) {
  .index-now-on .nowon-body {
    height: auto;
    padding: 16px;
  }
}
.index-now-on .nowon-body .nowon-content-box {
  flex: 0 0 50%;
  height: 100%;
  padding: 52px 0;
  padding-left: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: rgba(0, 0, 0, 0.7);
}
@media (max-width: 1280px) {
  .index-now-on .nowon-body .nowon-content-box {
    padding: 32px 20px;
  }
}
@media (max-width: 1024px) {
  .index-now-on .nowon-body .nowon-content-box {
    flex: 1 1 auto;
  }
}
@media (max-width: 768px) {
  .index-now-on .nowon-body .nowon-content-box {
    padding: 24px;
  }
}
@media (max-width: 480px) {
  .index-now-on .nowon-body .nowon-content-box {
    padding: 16px;
  }
}
.index-now-on .nowon-body .nowon-content-box .nowon-type {
  font-size: 16px;
  color: white;
  word-break: keep-all;
  margin-bottom: 8px;
}
@media (max-width: 1280px) {
  .index-now-on .nowon-body .nowon-content-box .nowon-type {
    font-size: 14px;
  }
}
.index-now-on .nowon-body .nowon-content-box .nowon-name {
  font-size: 20px;
  font-weight: 700;
  color: white;
  word-break: keep-all;
}
@media (max-width: 1280px) {
  .index-now-on .nowon-body .nowon-content-box .nowon-name {
    font-size: 16px;
  }
}
.index-now-on .nowon-body .nowon-content-box .devide-line {
  display: block;
  width: 1px;
  height: 48px;
  margin: auto 0;
  background: white;
}
@media (max-width: 768px) {
  .index-now-on .nowon-body .nowon-content-box .devide-line {
    height: 32px;
  }
}
@media (max-width: 480px) {
  .index-now-on .nowon-body .nowon-content-box .devide-line {
    margin: 20px 0;
    height: 28px;
  }
}
.index-now-on .nowon-body .nowon-content-box .nowon-desc {
  margin-bottom: 24px;
  font-size: 16px;
  line-height: 1.6;
  color: white;
  word-break: keep-all;
}
@media (max-width: 1280px) {
  .index-now-on .nowon-body .nowon-content-box .nowon-desc {
    margin-bottom: 16px;
    font-size: 14px;
  }
}
.index-now-on .nowon-body .nowon-content-box .nowon-view {
  align-self: flex-start;
  padding: 8px 24px;
  border: 1px solid white;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 16px;
  transition: all 0.2s ease-in-out;
}
@media (max-width: 1280px) {
  .index-now-on .nowon-body .nowon-content-box .nowon-view {
    padding: 8px 20px;
    gpa: 12px;
  }
}
.index-now-on .nowon-body .nowon-content-box .nowon-view > span {
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  color: white;
  word-break: keep-all;
}
@media (max-width: 1280px) {
  .index-now-on .nowon-body .nowon-content-box .nowon-view > span {
    font-size: 12px;
  }
}
.index-now-on .nowon-body .nowon-content-box .nowon-view > svg {
  width: auto;
  height: 16px;
  fill: white;
}
@media (max-width: 1280px) {
  .index-now-on .nowon-body .nowon-content-box .nowon-view > svg {
    height: 14px;
  }
}
.index-now-on .nowon-body .nowon-content-box .nowon-view:hover {
  background: white;
}
.index-now-on .nowon-body .nowon-content-box .nowon-view:hover > span {
  color: black;
}
.index-now-on .nowon-body .nowon-content-box .nowon-view:hover > svg {
  fill: black;
}

.index-artist-list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
@media (max-width: 1280px) {
  .index-artist-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
@media (max-width: 480px) {
  .index-artist-list {
    grid-template-columns: 1fr;
  }
}
.index-artist-list .item {
  width: 100%;
  transition: all 0.2s ease-in-out;
}
.index-artist-list .item > a {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4/6;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
@media (max-width: 1280px) {
  .index-artist-list .item > a {
    aspect-ratio: 1/1;
  }
}
@media (max-width: 640px) {
  .index-artist-list .item > a {
    aspect-ratio: 4/6;
  }
}
.index-artist-list .item > a .artist-content {
  width: 100%;
  height: 100%;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: rgba(0, 0, 0, 0.3);
}
@media (max-width: 1280px) {
  .index-artist-list .item > a .artist-content {
    padding: 16px;
  }
}
.index-artist-list .item > a .artist-content .name {
  font-size: 24px;
  font-weight: 700;
  color: white;
  word-break: keep-all;
}
@media (max-width: 1280px) {
  .index-artist-list .item > a .artist-content .name {
    font-size: 20px;
  }
}
.index-artist-list .item > a .artist-content .devide-line {
  display: block;
  margin: 32px 0;
  width: 36px;
  height: 1px;
  background: white;
}
@media (max-width: 1280px) {
  .index-artist-list .item > a .artist-content .devide-line {
    margin: 16px 0;
    width: 24px;
  }
}
.index-artist-list .item > a .artist-content .desc {
  width: 100%;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6;
  color: white;
}
@media (max-width: 1280px) {
  .index-artist-list .item > a .artist-content .desc {
    font-size: 13px;
  }
}
.index-artist-list .item:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 12px -2px rgba(0, 0, 0, 0.7);
}

.index-register-section {
  width: 100%;
  margin-bottom: 140px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  background: white;
  border-top: 2px solid black;
  border-bottom: 2px solid black;
}
@media (max-width: 1280px) {
  .index-register-section {
    margin-bottom: 100px;
  }
}
@media (max-width: 768px) {
  .index-register-section {
    margin-bottom: 70px;
  }
}
.index-register-section .container {
  width: 95%;
  height: 100%;
  padding: 80px 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 70px;
}
@media (max-width: 1280px) {
  .index-register-section .container {
    padding: 52px 0;
    gap: 48px;
  }
}
@media (max-width: 1024px) {
  .index-register-section .container {
    flex-direction: column;
    gap: 32px;
  }
}
@media (max-width: 768px) {
  .index-register-section .container {
    padding: 40px 0;
  }
}
.index-register-section .container .register-content-box {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 70px;
}
@media (max-width: 1280px) {
  .index-register-section .container .register-content-box {
    gap: 32px;
  }
}
@media (max-width: 768px) {
  .index-register-section .container .register-content-box {
    flex-direction: column;
    gap: 12px;
  }
}
.index-register-section .container .register-content-box > span {
  font-size: 20px;
  line-height: 1.4;
  color: #2D2D2D;
  word-break: keep-all;
}
@media (max-width: 1280px) {
  .index-register-section .container .register-content-box > span {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .index-register-section .container .register-content-box > span {
    font-size: 14px;
    font-weight: 500;
  }
}
.index-register-section .container .register-content-box .inner-line {
  display: block;
  width: 80px;
  height: 1px;
  background: #2D2D2D;
}
@media (max-width: 1280px) {
  .index-register-section .container .register-content-box .inner-line {
    width: 40px;
  }
}
@media (max-width: 768px) {
  .index-register-section .container .register-content-box .inner-line {
    width: 24px;
  }
}
.index-register-section .container > a {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.index-register-section .container > a > span {
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  color: #AC7460;
  word-break: keep-all;
}
@media (max-width: 1280px) {
  .index-register-section .container > a > span {
    font-size: 14px;
  }
}

.index-video-section {
  width: 100%;
  height: auto;
}
.index-video-section > iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 1920/1080;
}
.index-video-section > video {
  width: 100%;
  height: auto;
}/*# sourceMappingURL=main.css.map */