@charset "UTF-8";
.subpage-main {
  width: 100%;
  display: flex;
  flex-direction: column;
  background: white;
}
.subpage-main .subpage-title {
  position: fixed;
  left: 0;
  top: 145px;
  width: 100%;
  height: 40px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background: black;
  z-index: 50;
}
@media (max-width: 1280px) {
  .subpage-main .subpage-title {
    top: 117px;
  }
}
@media (max-width: 768px) {
  .subpage-main .subpage-title {
    top: 109px;
  }
}
.subpage-main .subpage-title > h1 {
  font-size: 18px;
  color: white;
  text-align: center;
  word-break: keep-all;
}
@media (max-width: 768px) {
  .subpage-main .subpage-title > h1 {
    font-size: 16px;
  }
}
.subpage-main .subpage-body {
  width: 100%;
  padding: 100px 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
@media (max-width: 1280px) {
  .subpage-main .subpage-body {
    padding: 70px 0;
  }
}
@media (max-width: 768px) {
  .subpage-main .subpage-body {
    padding: 50px 0;
  }
}

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

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

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

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

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

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

.nowon {
  width: 95%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.nowon .nowon-top {
  width: 100%;
  padding-bottom: 90px;
  margin-bottom: 90px;
  border-bottom: 1px solid #aaa;
}
@media (max-width: 1280px) {
  .nowon .nowon-top {
    padding-bottom: 48px;
    margin-bottom: 48px;
  }
}
.nowon .nowon-top .gallery-wrap {
  grid-column: span 4;
  padding-right: 160px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1280px) {
  .nowon .nowon-top .gallery-wrap {
    padding-right: 48px;
  }
}
@media (max-width: 768px) {
  .nowon .nowon-top .gallery-wrap {
    padding-right: 0;
    margin-bottom: 16px;
    grid-column: span 12;
  }
}
.nowon .nowon-top .gallery-wrap .gal-subject {
  width: 100%;
  padding-bottom: 12px;
  margin-bottom: 16px;
  font-size: 24px;
  font-weight: 700;
  color: black;
  border-bottom: 1px solid #aaa;
}
@media (max-width: 1280px) {
  .nowon .nowon-top .gallery-wrap .gal-subject {
    padding-bottom: 8px;
    margin-bottom: 12px;
    font-size: 20px;
  }
}
.nowon .nowon-top .gallery-wrap .gal-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
}
@media (max-width: 1280px) {
  .nowon .nowon-top .gallery-wrap .gal-list {
    gap: 12px;
  }
}
@media (max-width: 768px) {
  .nowon .nowon-top .gallery-wrap .gal-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
}
@media (max-width: 640px) {
  .nowon .nowon-top .gallery-wrap .gal-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.nowon .nowon-top .gallery-wrap .gal-list .item > a {
  font-size: 18px;
  color: #3D3D3D;
  word-break: keep-all;
}
@media (max-width: 1280px) {
  .nowon .nowon-top .gallery-wrap .gal-list .item > a {
    font-size: 16px;
  }
}
.nowon .nowon-top .gallery-wrap .gal-list .item.on > a {
  font-weight: 900;
  color: black;
}
.nowon .nowon-top .nowon-current-art {
  position: relative;
  grid-column: span 4;
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
}
@media (max-width: 768px) {
  .nowon .nowon-top .nowon-current-art {
    grid-column: span 6;
  }
}
@media (max-width: 480px) {
  .nowon .nowon-top .nowon-current-art {
    grid-column: span 12;
  }
}
.nowon .nowon-top .nowon-current-art > img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  -o-object-fit: cover;
     object-fit: cover;
}
.nowon .nowon-top .nowon-current-contents {
  grid-column: span 4;
  width: 100%;
  padding-left: 160px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (max-width: 1280px) {
  .nowon .nowon-top .nowon-current-contents {
    padding-left: 48px;
  }
}
@media (max-width: 768px) {
  .nowon .nowon-top .nowon-current-contents {
    grid-column: span 6;
    padding-left: 0;
  }
}
@media (max-width: 480px) {
  .nowon .nowon-top .nowon-current-contents {
    grid-column: span 12;
  }
}
.nowon .nowon-top .nowon-current-contents .name-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (max-width: 1280px) {
  .nowon .nowon-top .nowon-current-contents .name-wrap {
    gap: 8px;
  }
}
.nowon .nowon-top .nowon-current-contents .name-wrap .art-name {
  font-size: 20px;
  line-height: 1.4;
  font-weight: 800;
  color: black;
  word-break: keep-all;
}
@media (max-width: 1280px) {
  .nowon .nowon-top .nowon-current-contents .name-wrap .art-name {
    font-size: 16px;
  }
}
.nowon .nowon-top .nowon-current-contents .name-wrap .artist {
  font-size: 15px;
  font-weight: 300;
  color: black;
  word-break: keep-all;
}
@media (max-width: 1280px) {
  .nowon .nowon-top .nowon-current-contents .name-wrap .artist {
    font-size: 13px;
  }
}
.nowon .nowon-top .nowon-current-contents .devide-line {
  margin: 40px 0;
  width: 1px;
  height: 56px;
  display: inline-block;
  background: #aaa;
}
@media (max-width: 1280px) {
  .nowon .nowon-top .nowon-current-contents .devide-line {
    margin: 20px 0;
    height: 40px;
  }
}
.nowon .nowon-top .nowon-current-contents .info-wrap {
  width: 100%;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (max-width: 1280px) {
  .nowon .nowon-top .nowon-current-contents .info-wrap {
    gap: 12px;
  }
}
.nowon .nowon-top .nowon-current-contents .info-wrap .desc {
  font-size: 15px;
  line-height: 1.6;
  font-weight: 300;
  color: black;
  word-break: keep-all;
}
@media (max-width: 1280px) {
  .nowon .nowon-top .nowon-current-contents .info-wrap .desc {
    font-size: 13px;
  }
}
.nowon .nowon-top .nowon-current-contents .info-wrap .price {
  font-size: 20px;
  font-weight: 800;
  color: black;
}
@media (max-width: 1280px) {
  .nowon .nowon-top .nowon-current-contents .info-wrap .price {
    font-size: 16px;
  }
}
.nowon .nowon-top .nowon-current-contents .info-wrap .sold-out {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}
.nowon .nowon-top .nowon-current-contents .info-wrap .sold-out .circle {
  width: 1rem;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 1000rem;
  background: #FF4D53;
}
@media (max-width: 1280px) {
  .nowon .nowon-top .nowon-current-contents .info-wrap .sold-out .circle {
    width: 12px;
  }
}
.nowon .nowon-top .nowon-current-contents .info-wrap .sold-out > b {
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  color: #FF4D53;
}
@media (max-width: 1280px) {
  .nowon .nowon-top .nowon-current-contents .info-wrap .sold-out > b {
    font-size: 1rem;
  }
}
.nowon .nowon-top .nowon-current-contents .info-description {
  width: 100%;
  font-size: 14px;
  line-height: 1.6;
  color: #3D3D3D;
}
.nowon .nowon-bottom {
  position: relative;
  width: 100%;
  padding: 0 180px;
}
@media (max-width: 1280px) {
  .nowon .nowon-bottom {
    padding: 0 60px;
  }
}
@media (max-width: 768px) {
  .nowon .nowon-bottom {
    padding: 0 40px;
  }
}
.nowon .nowon-bottom .nowon-bottom-swiper {
  position: relative;
  width: 100%;
  padding-bottom: 32px;
  overflow: hidden;
}
.nowon .nowon-bottom .nowon-bottom-swiper .swiper-wrapper {
  width: 100%;
  height: auto;
}
.nowon .nowon-bottom .nowon-bottom-swiper .swiper-wrapper .swiper-slide > a {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  display: block;
  overflow: hidden;
}
@media (max-width: 1280px) {
  .nowon .nowon-bottom .nowon-bottom-swiper .swiper-wrapper .swiper-slide > a {
    display: flex;
    flex-direction: column-reverse;
    aspect-ratio: unset;
  }
}
.nowon .nowon-bottom .nowon-bottom-swiper .swiper-wrapper .swiper-slide > a .slide-cover {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: all 0.2s ease-in-out;
  z-index: 3;
}
@media (max-width: 1280px) {
  .nowon .nowon-bottom .nowon-bottom-swiper .swiper-wrapper .swiper-slide > a .slide-cover {
    position: relative;
    height: auto;
    gap: 12px;
    background: black;
    opacity: 1;
  }
}
.nowon .nowon-bottom .nowon-bottom-swiper .swiper-wrapper .swiper-slide > a .slide-cover:hover {
  opacity: 1;
}
.nowon .nowon-bottom .nowon-bottom-swiper .swiper-wrapper .swiper-slide > a .slide-cover .tit-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.nowon .nowon-bottom .nowon-bottom-swiper .swiper-wrapper .swiper-slide > a .slide-cover .tit-wrap .tit {
  font-size: 18px;
  font-weight: 800;
  line-height: 1.2;
  color: white;
  word-break: break-all;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  text-overflow: ellipsis;
  overflow: hidden;
}
@media (max-width: 1280px) {
  .nowon .nowon-bottom .nowon-bottom-swiper .swiper-wrapper .swiper-slide > a .slide-cover .tit-wrap .tit {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .nowon .nowon-bottom .nowon-bottom-swiper .swiper-wrapper .swiper-slide > a .slide-cover .tit-wrap .tit {
    font-size: 14px;
  }
}
.nowon .nowon-bottom .nowon-bottom-swiper .swiper-wrapper .swiper-slide > a .slide-cover .tit-wrap .artist {
  font-size: 15px;
  font-weight: 300;
  line-height: 1;
  color: white;
  text-align: center;
  word-break: break-all;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  text-overflow: ellipsis;
  overflow: hidden;
}
@media (max-width: 1280px) {
  .nowon .nowon-bottom .nowon-bottom-swiper .swiper-wrapper .swiper-slide > a .slide-cover .tit-wrap .artist {
    font-size: 13px;
  }
}
.nowon .nowon-bottom .nowon-bottom-swiper .swiper-wrapper .swiper-slide > a .slide-cover > svg {
  width: 32px;
  height: auto;
  margin: 24px 0;
  fill: white;
}
@media (max-width: 1280px) {
  .nowon .nowon-bottom .nowon-bottom-swiper .swiper-wrapper .swiper-slide > a .slide-cover > svg {
    display: none;
  }
}
.nowon .nowon-bottom .nowon-bottom-swiper .swiper-wrapper .swiper-slide > a .slide-cover .price-tag {
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
  color: white;
  text-align: center;
}
@media (max-width: 1280px) {
  .nowon .nowon-bottom .nowon-bottom-swiper .swiper-wrapper .swiper-slide > a .slide-cover .price-tag {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .nowon .nowon-bottom .nowon-bottom-swiper .swiper-wrapper .swiper-slide > a .slide-cover .price-tag {
    font-size: 14px;
  }
}
.nowon .nowon-bottom .nowon-bottom-swiper .swiper-wrapper .swiper-slide > a .slide-cover .sold-out {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}
.nowon .nowon-bottom .nowon-bottom-swiper .swiper-wrapper .swiper-slide > a .slide-cover .sold-out .circle {
  width: 1rem;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 1000rem;
  background: #FF4D53;
}
@media (max-width: 1280px) {
  .nowon .nowon-bottom .nowon-bottom-swiper .swiper-wrapper .swiper-slide > a .slide-cover .sold-out .circle {
    width: 14px;
  }
}
@media (max-width: 768px) {
  .nowon .nowon-bottom .nowon-bottom-swiper .swiper-wrapper .swiper-slide > a .slide-cover .sold-out .circle {
    width: 12px;
  }
}
.nowon .nowon-bottom .nowon-bottom-swiper .swiper-wrapper .swiper-slide > a .slide-cover .sold-out > b {
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  color: #FF4D53;
}
@media (max-width: 1280px) {
  .nowon .nowon-bottom .nowon-bottom-swiper .swiper-wrapper .swiper-slide > a .slide-cover .sold-out > b {
    font-size: 1rem;
  }
}
@media (max-width: 768px) {
  .nowon .nowon-bottom .nowon-bottom-swiper .swiper-wrapper .swiper-slide > a .slide-cover .sold-out > b {
    font-size: 14px;
  }
}
.nowon .nowon-bottom .nowon-bottom-swiper .swiper-wrapper .swiper-slide > a > img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1280px) {
  .nowon .nowon-bottom .nowon-bottom-swiper .swiper-wrapper .swiper-slide > a > img {
    position: relative;
    left: unset;
    top: unset;
    height: auto;
    transform: unset;
    aspect-ratio: 1/1;
  }
}
.nowon .nowon-bottom .nowon-bottom-swiper .swiper-pagination {
  position: absolute;
  top: unset;
  bottom: 0;
}
.nowon .nowon-bottom .nowon-bottom-swiper .swiper-pagination .swiper-pagination-bullet-active {
  background: black;
}
.nowon .nowon-bottom .swiper-custom-navigation {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.nowon .nowon-bottom .swiper-custom-navigation div {
  cursor: pointer;
}
.nowon .nowon-bottom .swiper-custom-navigation svg {
  width: auto;
  height: 36px;
  fill: black;
}
@media (max-width: 768px) {
  .nowon .nowon-bottom .swiper-custom-navigation svg {
    height: 28px;
  }
}

.originals {
  width: 95%;
}
.originals .search-tit {
  width: 100%;
  margin-bottom: 48px;
  padding-bottom: 16px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid #aaa;
}
@media (max-width: 1280px) {
  .originals .search-tit {
    margin-bottom: 36px;
  }
}
@media (max-width: 768px) {
  .originals .search-tit {
    padding-bottom: 12px;
    margin-bottom: 24px;
  }
}
.originals .search-tit .search-keyword {
  font-size: 20px;
  font-weight: 600;
  color: black;
  word-break: keep-all;
}
@media (max-width: 768px) {
  .originals .search-tit .search-keyword {
    font-size: 16px;
  }
}
.originals .search-tit .result-count {
  font-size: 20px;
  font-weight: 600;
  color: #707070;
  word-break: keep-all;
}
@media (max-width: 768px) {
  .originals .search-tit .result-count {
    font-size: 16px;
  }
}
.originals .art-list {
  width: 100%;
  margin-bottom: 100px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 100px 28px;
}
@media (max-width: 1280px) {
  .originals .art-list {
    margin-bottom: 60px;
    gap: 60px 20px;
  }
}
@media (max-width: 768px) {
  .originals .art-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 48px 16px;
  }
}
@media (max-width: 640px) {
  .originals .art-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.originals .art-list .item {
  width: 100%;
}
.originals .art-list .item > a {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
@media (max-width: 1280px) {
  .originals .art-list .item > a {
    gap: 20px;
  }
}
.originals .art-list .item > a .art-thumb {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  overflow: hidden;
}
.originals .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;
}
.originals .art-list .item > a .art-info-box {
  position: relative;
  width: 100%;
  padding: 0 8px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 768px) {
  .originals .art-list .item > a .art-info-box {
    padding: 0;
  }
}
.originals .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) {
  .originals .art-list .item > a .art-info-box .like {
    width: 24px;
    height: 24px;
  }
}
.originals .art-list .item > a .art-info-box .like > svg {
  width: 100%;
  height: 100%;
  fill: #FF4D53;
}
.originals .art-list .item > a .art-info-box .like > svg:nth-of-type(1) {
  display: block;
}
.originals .art-list .item > a .art-info-box .like > svg:nth-of-type(2) {
  display: none;
}
.originals .art-list .item > a .art-info-box .like.active > svg:nth-of-type(1) {
  display: none;
}
.originals .art-list .item > a .art-info-box .like.active > svg:nth-of-type(2) {
  display: block;
}
.originals .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) {
  .originals .art-list .item > a .art-info-box .art-name {
    padding-right: 18px;
    margin-bottom: 8px;
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .originals .art-list .item > a .art-info-box .art-name {
    padding-right: 26px;
  }
}
.originals .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) {
  .originals .art-list .item > a .art-info-box .art-desc {
    margin-bottom: 8px;
    font-size: 13px;
  }
}
.originals .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) {
  .originals .art-list .item > a .art-info-box .art-price {
    font-size: 16px;
  }
}
.originals .art-list .item > a .art-info-box .sold-out {
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
}
.originals .art-list .item > a .art-info-box .sold-out .circle {
  width: 1rem;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 5000rem;
  background: #FF4D53;
}
.originals .pagination {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
@media (max-width: 1280px) {
  .originals .pagination {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .originals .pagination {
    gap: 12px;
  }
}
.originals .pagination > a {
  display: inline-block;
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  color: #aaa;
}
@media (max-width: 1280px) {
  .originals .pagination > a {
    font-size: 16px;
  }
}
@media (max-width: 1280px) {
  .originals .pagination > a {
    font-size: 14px;
  }
}
.originals .pagination > a.on {
  color: black;
}
.originals .pagination > a > svg {
  width: 24px;
  height: 24px;
  fill: #707070;
}
@media (max-width: 1280px) {
  .originals .pagination > a > svg {
    width: 20px;
    height: 20px;
  }
}
@media (max-width: 768px) {
  .originals .pagination > a > svg {
    width: 16px;
    height: 16px;
  }
}

.artists {
  width: 95%;
}
.artists .gallery-wrap {
  grid-column: 1/5;
  position: sticky;
  top: 247px;
  width: 100%;
  padding-right: 160px;
  align-self: flex-start;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1280px) {
  .artists .gallery-wrap {
    padding-right: 48px;
  }
}
@media (max-width: 768px) {
  .artists .gallery-wrap {
    position: relative;
    top: unset;
    padding-right: 0;
    margin-bottom: 16px;
    grid-column: span 12;
  }
}
.artists .gallery-wrap .gal-subject {
  width: 100%;
  padding-bottom: 12px;
  margin-bottom: 16px;
  font-size: 24px;
  font-weight: 700;
  color: black;
  border-bottom: 1px solid #aaa;
}
@media (max-width: 1280px) {
  .artists .gallery-wrap .gal-subject {
    padding-bottom: 8px;
    margin-bottom: 12px;
    font-size: 20px;
  }
}
.artists .gallery-wrap .gal-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
}
@media (max-width: 1280px) {
  .artists .gallery-wrap .gal-list {
    gap: 12px;
  }
}
@media (max-width: 768px) {
  .artists .gallery-wrap .gal-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
}
@media (max-width: 640px) {
  .artists .gallery-wrap .gal-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.artists .gallery-wrap .gal-list .item > a {
  font-size: 18px;
  color: #3D3D3D;
  word-break: keep-all;
}
@media (max-width: 1280px) {
  .artists .gallery-wrap .gal-list .item > a {
    font-size: 16px;
  }
}
.artists .gallery-wrap .gal-list .item.on > a {
  font-weight: 900;
  color: black;
}
.artists .artist-content-wrap {
  grid-column: 5/13;
  display: flex;
  flex-direction: column;
}
@media (max-width: 768px) {
  .artists .artist-content-wrap {
    grid-column: span 12;
  }
}
.artists .artist-content-wrap .artist-summary {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  padding-bottom: 90px;
  margin-bottom: 90px;
  border-bottom: 1px solid #aaa;
}
@media (max-width: 1280px) {
  .artists .artist-content-wrap .artist-summary {
    padding-bottom: 48px;
    margin-bottom: 48px;
  }
}
@media (max-width: 480px) {
  .artists .artist-content-wrap .artist-summary {
    flex-direction: column;
  }
}
.artists .artist-content-wrap .artist-summary .artist-img {
  flex: 1 1 40%;
  position: relative;
  height: auto;
  aspect-ratio: 1/1;
}
@media (max-width: 480px) {
  .artists .artist-content-wrap .artist-summary .artist-img {
    width: 100%;
  }
}
.artists .artist-content-wrap .artist-summary .artist-img > img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  -o-object-fit: cover;
     object-fit: cover;
}
.artists .artist-content-wrap .artist-summary .summary-contents-box {
  flex: 1 1 40%;
  padding-left: 74px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (max-width: 1280px) {
  .artists .artist-content-wrap .artist-summary .summary-contents-box {
    padding-left: 48px;
  }
}
@media (max-width: 768px) {
  .artists .artist-content-wrap .artist-summary .summary-contents-box {
    padding-left: 0;
  }
}
@media (max-width: 480px) {
  .artists .artist-content-wrap .artist-summary .summary-contents-box {
    width: 100%;
  }
}
.artists .artist-content-wrap .artist-summary .summary-contents-box .name-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.artists .artist-content-wrap .artist-summary .summary-contents-box .name-wrap .name {
  font-size: 20px;
  font-weight: 800;
  color: black;
  word-break: keep-all;
}
@media (max-width: 1280px) {
  .artists .artist-content-wrap .artist-summary .summary-contents-box .name-wrap .name {
    font-size: 16px;
  }
}
.artists .artist-content-wrap .artist-summary .summary-contents-box .name-wrap .short {
  font-size: 15px;
  line-height: 1.3;
  font-weight: 300;
  color: black;
  word-break: keep-all;
}
@media (max-width: 1280px) {
  .artists .artist-content-wrap .artist-summary .summary-contents-box .name-wrap .short {
    font-size: 13px;
  }
}
.artists .artist-content-wrap .artist-summary .summary-contents-box .devide-line {
  display: inline-block;
  width: 1px;
  height: 56px;
  margin: 48px 0;
  background: #aaa;
}
@media (max-width: 1280px) {
  .artists .artist-content-wrap .artist-summary .summary-contents-box .devide-line {
    margin: 20px 0;
    height: 40px;
  }
}
.artists .artist-content-wrap .artist-summary .summary-contents-box .desc {
  font-size: 15px;
  line-height: 1.6;
  color: black;
  word-break: keep-all;
}
@media (max-width: 1280px) {
  .artists .artist-content-wrap .artist-summary .summary-contents-box .desc {
    font-size: 13px;
  }
}
.artists .artist-content-wrap .artist-represents {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 70px;
}
@media (max-width: 1280px) {
  .artists .artist-content-wrap .artist-represents {
    gap: 48px;
  }
}
.artists .artist-content-wrap .artist-represents .item {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
}
@media (max-width: 480px) {
  .artists .artist-content-wrap .artist-represents .item {
    flex-direction: column;
  }
}
.artists .artist-content-wrap .artist-represents .item .represent-img {
  flex: 1 1 40%;
  position: relative;
  height: auto;
  aspect-ratio: 1/1;
}
@media (max-width: 480px) {
  .artists .artist-content-wrap .artist-represents .item .represent-img {
    width: 100%;
  }
}
.artists .artist-content-wrap .artist-represents .item .represent-img > img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  -o-object-fit: cover;
     object-fit: cover;
}
.artists .artist-content-wrap .artist-represents .item .represent-contents-box {
  flex: 1 1 40%;
  padding-left: 74px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
}
@media (max-width: 1280px) {
  .artists .artist-content-wrap .artist-represents .item .represent-contents-box {
    padding-left: 48px;
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .artists .artist-content-wrap .artist-represents .item .represent-contents-box {
    padding-left: 0;
    gap: 12px;
  }
}
@media (max-width: 480px) {
  .artists .artist-content-wrap .artist-represents .item .represent-contents-box {
    width: 100%;
  }
}
.artists .artist-content-wrap .artist-represents .item .represent-contents-box .type {
  font-size: 16px;
  font-weight: 700;
  color: black;
}
.artists .artist-content-wrap .artist-represents .item .represent-contents-box .subj {
  font-size: 16px;
  font-weight: 700;
  color: black;
  word-break: keep-all;
}
.artists .artist-content-wrap .artist-represents .item .represent-contents-box p {
  font-size: 15px;
  line-height: 1.6;
  font-weight: 300;
  color: black;
  word-break: keep-all;
}
@media (max-width: 1280px) {
  .artists .artist-content-wrap .artist-represents .item .represent-contents-box p {
    font-size: 13px;
  }
}
.artists .artist-content-wrap .represents-swiper {
  position: relative;
  width: 100%;
  padding-bottom: 24px;
  overflow: hidden;
}
.artists .artist-content-wrap .represents-swiper .swiper-wrapper {
  width: 100%;
}
.artists .artist-content-wrap .represents-swiper .swiper-wrapper .swiper-slide {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 1280px) {
  .artists .artist-content-wrap .represents-swiper .swiper-wrapper .swiper-slide {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .artists .artist-content-wrap .represents-swiper .swiper-wrapper .swiper-slide {
    gap: 16px;
  }
}
.artists .artist-content-wrap .represents-swiper .swiper-wrapper .swiper-slide .represent-img {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  border: 1px solid #ddd;
}
.artists .artist-content-wrap .represents-swiper .swiper-wrapper .swiper-slide .represent-img > img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.artists .artist-content-wrap .represents-swiper .swiper-wrapper .swiper-slide .represent-contents-box {
  flex: 1 1 40%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (max-width: 480px) {
  .artists .artist-content-wrap .represents-swiper .swiper-wrapper .swiper-slide .represent-contents-box {
    width: 100%;
  }
}
.artists .artist-content-wrap .represents-swiper .swiper-wrapper .swiper-slide .represent-contents-box .type {
  margin-bottom: 12px;
  font-size: 18px;
  font-weight: 700;
  color: black;
}
.artists .artist-content-wrap .represents-swiper .swiper-wrapper .swiper-slide .represent-contents-box .subj {
  margin-bottom: 16px;
  font-size: 16px;
  font-weight: 400;
  color: black;
  word-break: keep-all;
}
.artists .artist-content-wrap .represents-swiper .swiper-wrapper .swiper-slide .represent-contents-box p {
  font-size: 15px;
  line-height: 1.6;
  font-weight: 300;
  color: black;
  word-break: keep-all;
}
@media (max-width: 1280px) {
  .artists .artist-content-wrap .represents-swiper .swiper-wrapper .swiper-slide .represent-contents-box p {
    font-size: 13px;
  }
}
.artists .artist-content-wrap .represents-swiper .swiper-pagination {
  bottom: 0px;
}
.artists .artist-content-wrap .represents-swiper .swiper-pagination .swiper-pagination-bullet {
  background: black;
}
.artists .artist-content-wrap .represents-swiper .swiper-navigation {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  z-index: 5;
}
.artists .artist-content-wrap .represents-swiper .swiper-navigation .swiper-custom-prev, .artists .artist-content-wrap .represents-swiper .swiper-navigation .swiper-custom-next {
  width: 36px;
  height: 36px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  border-radius: 5000rem;
}
.artists .artist-content-wrap .represents-swiper .swiper-navigation .swiper-custom-prev > svg, .artists .artist-content-wrap .represents-swiper .swiper-navigation .swiper-custom-next > svg {
  width: 70%;
  height: 70%;
  fill: black;
}

.galleries {
  width: 95%;
}
.galleries .gallery-wrap {
  grid-column: 1/5;
  position: sticky;
  top: 247px;
  width: 100%;
  padding-right: 160px;
  align-self: flex-start;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1280px) {
  .galleries .gallery-wrap {
    padding-right: 48px;
  }
}
@media (max-width: 768px) {
  .galleries .gallery-wrap {
    padding-right: 0;
    margin-bottom: 16px;
    grid-column: span 12;
    position: relative;
    top: unset;
  }
}
.galleries .gallery-wrap .gal-subject {
  width: 100%;
  padding-bottom: 12px;
  margin-bottom: 16px;
  font-size: 24px;
  font-weight: 700;
  color: black;
  border-bottom: 1px solid #aaa;
}
@media (max-width: 1280px) {
  .galleries .gallery-wrap .gal-subject {
    padding-bottom: 8px;
    margin-bottom: 12px;
    font-size: 20px;
  }
}
.galleries .gallery-wrap .gal-list {
  width: 100%;
  max-height: 200px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
  overflow: auto;
}
@media (max-width: 1280px) {
  .galleries .gallery-wrap .gal-list {
    gap: 12px;
  }
}
@media (max-width: 768px) {
  .galleries .gallery-wrap .gal-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
}
@media (max-width: 640px) {
  .galleries .gallery-wrap .gal-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.galleries .gallery-wrap .gal-list .item > a {
  padding-right: 12px;
  font-size: 18px;
  color: #3D3D3D;
  word-break: keep-all;
}
@media (max-width: 1280px) {
  .galleries .gallery-wrap .gal-list .item > a {
    font-size: 16px;
  }
}
.galleries .gallery-wrap .gal-list .item.on > a {
  font-weight: 900;
  color: black;
}
.galleries .gallery-content-wrap {
  grid-column: 5/13;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 60px;
}
@media (max-width: 1280px) {
  .galleries .gallery-content-wrap {
    gap: 48px;
  }
}
@media (max-width: 768px) {
  .galleries .gallery-content-wrap {
    gap: 32px;
    grid-column: span 12;
  }
}
.galleries .gallery-content-wrap .gallery-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.galleries .gallery-content-wrap .gallery-list .item {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (max-width: 768px) {
  .galleries .gallery-content-wrap .gallery-list .item {
    gap: 24px;
  }
}
.galleries .gallery-content-wrap .gallery-list .item .gallery-thumb {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 1/0.5;
}
.galleries .gallery-content-wrap .gallery-list .item .gallery-thumb > img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.galleries .gallery-content-wrap .gallery-list .item .gallery-contents {
  width: 100%;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 768px) {
  .galleries .gallery-content-wrap .gallery-list .item .gallery-contents {
    padding: 0;
  }
}
.galleries .gallery-content-wrap .gallery-list .item .gallery-contents .gallery-name {
  margin-bottom: 28px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  color: black;
  word-break: keep-all;
}
@media (max-width: 768px) {
  .galleries .gallery-content-wrap .gallery-list .item .gallery-contents .gallery-name {
    margin-bottom: 20px;
  }
}
.galleries .gallery-content-wrap .gallery-list .item .gallery-contents .gallery-desc {
  margin-bottom: 40px;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.5;
  color: black;
  word-break: keep-all;
}
@media (max-width: 768px) {
  .galleries .gallery-content-wrap .gallery-list .item .gallery-contents .gallery-desc {
    margin-bottom: 24px;
    font-size: 13px;
  }
}
.galleries .gallery-content-wrap .gallery-list .item .gallery-contents .gallery-link {
  align-self: flex-end;
  width: 120px;
  height: 40px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-weight: 300;
  color: #464646;
  background: white;
  border: 1px solid #aaa;
  transition: all 0.2s ease-in-out;
}
.galleries .gallery-content-wrap .gallery-list .item .gallery-contents .gallery-link:hover {
  border: 1px solid black;
  background: black;
  color: white;
}
@media (max-width: 1280px) {
  .galleries .gallery-content-wrap .gallery-list .item .gallery-contents .gallery-link {
    width: 80px;
    height: 32px;
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .galleries .gallery-content-wrap .gallery-list .item .gallery-contents .gallery-link {
    width: 60px;
    height: 28px;
    font-size: 12px;
  }
}
.galleries .gallery-content-wrap .gal-content-box {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 1280px) {
  .galleries .gallery-content-wrap .gal-content-box {
    gap: 20px;
  }
}
.galleries .gallery-content-wrap .gal-content-box .box-tit {
  font-size: 20px;
  line-height: 1.3;
  font-weight: 700;
  color: black;
  word-break: keep-all;
}
@media (max-width: 1280px) {
  .galleries .gallery-content-wrap .gal-content-box .box-tit {
    font-size: 1rem;
  }
}
.galleries .gallery-content-wrap .gal-content-box .recently-exh-swiper {
  position: relative;
  width: 100%;
  height: auto;
  padding-bottom: 24px;
  overflow: hidden;
}
.galleries .gallery-content-wrap .gal-content-box .recently-exh-swiper .swiper-wrapper {
  width: 100%;
  height: auto;
}
.galleries .gallery-content-wrap .gal-content-box .recently-exh-swiper .swiper-wrapper .swiper-slide {
  width: 100%;
  height: auto;
  padding: 0 52px;
  display: flex;
  flex-direction: row;
  align-items: center;
}
@media (max-width: 1280px) {
  .galleries .gallery-content-wrap .gal-content-box .recently-exh-swiper .swiper-wrapper .swiper-slide {
    padding: 0 48px;
  }
}
@media (max-width: 768px) {
  .galleries .gallery-content-wrap .gal-content-box .recently-exh-swiper .swiper-wrapper .swiper-slide {
    padding: 0 32px;
  }
}
.galleries .gallery-content-wrap .gal-content-box .recently-exh-swiper .swiper-wrapper .swiper-slide .slide-container {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 48px;
}
@media (max-width: 1280px) {
  .galleries .gallery-content-wrap .gal-content-box .recently-exh-swiper .swiper-wrapper .swiper-slide .slide-container {
    gap: 24px;
  }
}
@media (max-width: 768px) {
  .galleries .gallery-content-wrap .gal-content-box .recently-exh-swiper .swiper-wrapper .swiper-slide .slide-container {
    flex-direction: column;
    align-items: center;
  }
}
.galleries .gallery-content-wrap .gal-content-box .recently-exh-swiper .swiper-wrapper .swiper-slide .slide-container .slide-image {
  flex: 0 0 auto;
  position: relative;
  width: 360px;
  height: auto;
  aspect-ratio: 1/1.415;
}
@media (max-width: 1280px) {
  .galleries .gallery-content-wrap .gal-content-box .recently-exh-swiper .swiper-wrapper .swiper-slide .slide-container .slide-image {
    flex: 1 1 auto;
    width: 40%;
  }
}
@media (max-width: 768px) {
  .galleries .gallery-content-wrap .gal-content-box .recently-exh-swiper .swiper-wrapper .swiper-slide .slide-container .slide-image {
    flex: unset;
    width: 100%;
    max-width: 400px;
  }
}
.galleries .gallery-content-wrap .gal-content-box .recently-exh-swiper .swiper-wrapper .swiper-slide .slide-container .slide-image > img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.galleries .gallery-content-wrap .gal-content-box .recently-exh-swiper .swiper-wrapper .swiper-slide .slide-container .slide-content {
  flex: 1 1 auto;
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 36px;
}
@media (max-width: 1280px) {
  .galleries .gallery-content-wrap .gal-content-box .recently-exh-swiper .swiper-wrapper .swiper-slide .slide-container .slide-content {
    width: 50%;
    padding-top: 12px;
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .galleries .gallery-content-wrap .gal-content-box .recently-exh-swiper .swiper-wrapper .swiper-slide .slide-container .slide-content {
    flex: unset;
    width: 100%;
    padding-top: 0;
  }
}
.galleries .gallery-content-wrap .gal-content-box .recently-exh-swiper .swiper-wrapper .swiper-slide .slide-container .slide-content .slide-name {
  font-size: 24px;
  line-height: 1.3;
  font-weight: 700;
  color: black;
  word-break: keep-all;
}
@media (max-width: 1280px) {
  .galleries .gallery-content-wrap .gal-content-box .recently-exh-swiper .swiper-wrapper .swiper-slide .slide-container .slide-content .slide-name {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .galleries .gallery-content-wrap .gal-content-box .recently-exh-swiper .swiper-wrapper .swiper-slide .slide-container .slide-content .slide-name {
    font-size: 1rem;
  }
}
.galleries .gallery-content-wrap .gal-content-box .recently-exh-swiper .swiper-wrapper .swiper-slide .slide-container .slide-content .slide-description {
  font-size: 14px;
  line-height: 1.6;
  word-break: keep-all;
}
@media (max-width: 768px) {
  .galleries .gallery-content-wrap .gal-content-box .recently-exh-swiper .swiper-wrapper .swiper-slide .slide-container .slide-content .slide-description {
    font-size: 13px;
  }
}
.galleries .gallery-content-wrap .gal-content-box .recently-exh-swiper .swiper-pagination {
  position: absolute;
  top: unset;
  right: unset;
  left: 0;
  bottom: 0;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.galleries .gallery-content-wrap .gal-content-box .recently-exh-swiper .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  border-radius: 50000rem;
}
@media (max-width: 1280px) {
  .galleries .gallery-content-wrap .gal-content-box .recently-exh-swiper .swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
  }
}
.galleries .gallery-content-wrap .gal-content-box .recently-exh-swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: black;
}
.galleries .gallery-content-wrap .gal-content-box .recently-exh-swiper .swiper-control-box {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: calc(100% - 24px);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.galleries .gallery-content-wrap .gal-content-box .recently-exh-swiper .swiper-control-box > div {
  position: relative;
  width: 40px;
  height: 100%;
  padding: 8px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background: linear-gradient(to left, white, transparent);
  z-index: 5;
}
@media (max-width: 1280px) {
  .galleries .gallery-content-wrap .gal-content-box .recently-exh-swiper .swiper-control-box > div {
    width: 32px;
    padding: 4px;
  }
}
.galleries .gallery-content-wrap .gal-content-box .recently-exh-swiper .swiper-control-box > div:nth-last-child(2) {
  background: linear-gradient(to right, white, transparent);
}
.galleries .gallery-content-wrap .gal-content-box .recently-exh-swiper .swiper-control-box > div > svg {
  width: 100%;
  height: auto;
  fill: black;
}
.galleries .gallery-content-wrap .gal-content-box .belong-artists {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px 20px;
}
@media (max-width: 1280px) {
  .galleries .gallery-content-wrap .gal-content-box .belong-artists {
    gap: 24px 1rem;
  }
}
@media (max-width: 768px) {
  .galleries .gallery-content-wrap .gal-content-box .belong-artists {
    grid-template-columns: repeat(2, 1fr);
  }
}
.galleries .gallery-content-wrap .gal-content-box .belong-artists .item {
  width: 100%;
  height: auto;
}
.galleries .gallery-content-wrap .gal-content-box .belong-artists .item > a {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 1280px) {
  .galleries .gallery-content-wrap .gal-content-box .belong-artists .item > a {
    gap: 1rem;
  }
}
.galleries .gallery-content-wrap .gal-content-box .belong-artists .item > a .artist-image {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
}
.galleries .gallery-content-wrap .gal-content-box .belong-artists .item > a .artist-image > img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.galleries .gallery-content-wrap .gal-content-box .belong-artists .item > a .artist-infos {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (max-width: 1280px) {
  .galleries .gallery-content-wrap .gal-content-box .belong-artists .item > a .artist-infos {
    gap: 8px;
  }
}
.galleries .gallery-content-wrap .gal-content-box .belong-artists .item > a .artist-infos .artist-name {
  font-size: 1rem;
  font-weight: 700;
  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) {
  .galleries .gallery-content-wrap .gal-content-box .belong-artists .item > a .artist-infos .artist-name {
    font-size: 14px;
  }
}
.galleries .gallery-content-wrap .gal-content-box .belong-artists .item > a .artist-infos .short-desc {
  font-size: 14px;
  line-height: 1.4;
  color: black;
  word-break: keep-all;
}
@media (max-width: 1280px) {
  .galleries .gallery-content-wrap .gal-content-box .belong-artists .item > a .artist-infos .short-desc {
    font-size: 13px;
  }
}

.photo-view {
  width: 95%;
  display: flex;
  flex-direction: column;
}
.photo-view .pv-top {
  width: 100%;
  padding-bottom: 48px;
  margin-bottom: 48px;
  border-bottom: 1px solid #aaa;
}
@media (max-width: 1280px) {
  .photo-view .pv-top {
    padding-bottom: 32px;
    margin-bottom: 32px;
  }
}
.photo-view .pv-top .photo-preview {
  position: relative;
  width: 100%;
  padding: 52px;
  align-self: flex-start;
  grid-column: span 6;
  border: 1px solid #aaa;
  background: white;
}
@media (max-width: 1280px) {
  .photo-view .pv-top .photo-preview {
    padding: 32px;
  }
}
@media (max-width: 768px) {
  .photo-view .pv-top .photo-preview {
    grid-column: span 12;
  }
}
.photo-view .pv-top .photo-preview .preview-swiper {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.photo-view .pv-top .photo-preview .preview-swiper .swiper-wrapper {
  width: 100%;
  height: auto;
}
.photo-view .pv-top .photo-preview .preview-swiper .swiper-wrapper .swiper-slide {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
}
.photo-view .pv-top .photo-preview .preview-swiper .swiper-wrapper .swiper-slide > img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.photo-view .pv-top .photo-preview .prview-navigation {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 30px);
  height: auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1280px) {
  .photo-view .pv-top .photo-preview .prview-navigation {
    width: calc(100% - 7px);
  }
}
.photo-view .pv-top .photo-preview .prview-navigation div {
  cursor: pointer;
}
.photo-view .pv-top .photo-preview .prview-navigation svg {
  width: auto;
  height: 24px;
  fill: black;
}
.photo-view .pv-top .photo-preview .prview-pagination {
  position: absolute;
  left: 0;
  bottom: 20px;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 4px;
  font-weight: 600;
  color: #818181;
}
@media (max-width: 1280px) {
  .photo-view .pv-top .photo-preview .prview-pagination {
    font-size: 14px;
    bottom: 8px;
  }
}
.photo-view .pv-top .photo-preview .prview-pagination .swiper-pagination-current {
  color: black;
}
.photo-view .pv-top .photo-information-wrap {
  padding-left: 200px;
  grid-column: span 6;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1280px) {
  .photo-view .pv-top .photo-information-wrap {
    padding-left: 80px;
  }
}
@media (max-width: 1024px) {
  .photo-view .pv-top .photo-information-wrap {
    padding-left: 0;
  }
}
@media (max-width: 768px) {
  .photo-view .pv-top .photo-information-wrap {
    grid-column: span 12;
  }
}
.photo-view .pv-top .photo-information-wrap .summary-area {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-bottom: 32px;
  margin-bottom: 32px;
  border-bottom: 1px solid #aaa;
}
@media (max-width: 1280px) {
  .photo-view .pv-top .photo-information-wrap .summary-area {
    padding-bottom: 24px;
    margin-bottom: 24px;
  }
}
.photo-view .pv-top .photo-information-wrap .summary-area .name-box {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.photo-view .pv-top .photo-information-wrap .summary-area .name-box .name {
  font-size: 20px;
  font-weight: 800;
  color: black;
  word-break: keep-all;
}
@media (max-width: 1280px) {
  .photo-view .pv-top .photo-information-wrap .summary-area .name-box .name {
    font-size: 16px;
  }
}
.photo-view .pv-top .photo-information-wrap .summary-area .name-box .artist {
  font-size: 15px;
  font-weight: 300;
  color: black;
  word-break: keep-all;
}
@media (max-width: 1280px) {
  .photo-view .pv-top .photo-information-wrap .summary-area .name-box .artist {
    font-size: 13px;
  }
}
.photo-view .pv-top .photo-information-wrap .summary-area .devide-line {
  display: inline-block;
  margin: 40px 0;
  width: 1px;
  height: 56px;
  background: #aaa;
}
@media (max-width: 1280px) {
  .photo-view .pv-top .photo-information-wrap .summary-area .devide-line {
    margin: 20px 0;
    height: 36px;
  }
}
.photo-view .pv-top .photo-information-wrap .summary-area .summary-list {
  width: 100%;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 16px;
}
@media (max-width: 1280px) {
  .photo-view .pv-top .photo-information-wrap .summary-area .summary-list {
    grid-template-columns: 60px 1fr;
    gap: 12px;
  }
}
.photo-view .pv-top .photo-information-wrap .summary-area .summary-list > dt {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  color: black;
}
@media (max-width: 1280px) {
  .photo-view .pv-top .photo-information-wrap .summary-area .summary-list > dt {
    font-size: 14px;
  }
}
.photo-view .pv-top .photo-information-wrap .summary-area .summary-list > dd {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.2;
  color: black;
}
@media (max-width: 1280px) {
  .photo-view .pv-top .photo-information-wrap .summary-area .summary-list > dd {
    font-size: 14px;
  }
}
.photo-view .pv-top .photo-information-wrap .comment-area {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-bottom: 32px;
  margin-bottom: 32px;
  border-bottom: 1px solid #aaa;
}
@media (max-width: 1280px) {
  .photo-view .pv-top .photo-information-wrap .comment-area {
    padding-bottom: 24px;
    margin-bottom: 24px;
  }
}
.photo-view .pv-top .photo-information-wrap .comment-area .comment-box {
  width: 100%;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
@media (max-width: 1280px) {
  .photo-view .pv-top .photo-information-wrap .comment-area .comment-box {
    margin-bottom: 24px;
  }
}
.photo-view .pv-top .photo-information-wrap .comment-area .comment-box > b {
  font-size: 16px;
  font-weight: 700;
  color: black;
}
@media (max-width: 1280px) {
  .photo-view .pv-top .photo-information-wrap .comment-area .comment-box > b {
    font-size: 14px;
  }
}
.photo-view .pv-top .photo-information-wrap .comment-area .comment-box > p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.6;
  color: black;
}
@media (max-width: 1280px) {
  .photo-view .pv-top .photo-information-wrap .comment-area .comment-box > p {
    font-size: 13px;
  }
}
.photo-view .pv-top .photo-information-wrap .comment-area .price-tag {
  margin-bottom: 32px;
  font-size: 20px;
  font-weight: 800;
  color: black;
}
@media (max-width: 1280px) {
  .photo-view .pv-top .photo-information-wrap .comment-area .price-tag {
    margin-bottom: 24px;
    font-size: 16px;
  }
}
.photo-view .pv-top .photo-information-wrap .comment-area .sold-out {
  margin-bottom: 32px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}
@media (max-width: 1280px) {
  .photo-view .pv-top .photo-information-wrap .comment-area .sold-out {
    margin-bottom: 24px;
  }
}
.photo-view .pv-top .photo-information-wrap .comment-area .sold-out .circle {
  width: 1rem;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 1000rem;
  background: #FF4D53;
}
@media (max-width: 1280px) {
  .photo-view .pv-top .photo-information-wrap .comment-area .sold-out .circle {
    width: 12px;
  }
}
.photo-view .pv-top .photo-information-wrap .comment-area .sold-out > b {
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  color: #FF4D53;
}
@media (max-width: 1280px) {
  .photo-view .pv-top .photo-information-wrap .comment-area .sold-out > b {
    font-size: 1rem;
  }
}
.photo-view .pv-top .photo-information-wrap .comment-area .desc-article {
  width: 100%;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (max-width: 1280px) {
  .photo-view .pv-top .photo-information-wrap .comment-area .desc-article {
    margin-bottom: 24px;
  }
}
.photo-view .pv-top .photo-information-wrap .comment-area .desc-article .desc-tit {
  font-size: 16px;
  font-weight: 700;
  color: black;
}
@media (max-width: 1280px) {
  .photo-view .pv-top .photo-information-wrap .comment-area .desc-article .desc-tit {
    font-size: 14px;
  }
}
.photo-view .pv-top .photo-information-wrap .comment-area .desc-article .personal-infos {
  width: 100%;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px 8px;
}
@media (max-width: 1280px) {
  .photo-view .pv-top .photo-information-wrap .comment-area .desc-article .personal-infos {
    gap: 12px 8px;
  }
}
.photo-view .pv-top .photo-information-wrap .comment-area .desc-article .personal-infos dt, .photo-view .pv-top .photo-information-wrap .comment-area .desc-article .personal-infos dd {
  font-size: 15px;
  line-height: 1.2;
  font-weight: 300;
  color: black;
  word-break: keep-all;
}
@media (max-width: 1280px) {
  .photo-view .pv-top .photo-information-wrap .comment-area .desc-article .personal-infos dt, .photo-view .pv-top .photo-information-wrap .comment-area .desc-article .personal-infos dd {
    font-size: 13px;
  }
}
.photo-view .pv-top .photo-information-wrap .comment-area .desc-article .personal-infos dt {
  font-weight: 600;
}
.photo-view .pv-top .photo-information-wrap .comment-area .button-group {
  width: 100%;
  display: flex;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 1280px) {
  .photo-view .pv-top .photo-information-wrap .comment-area .button-group {
    gap: 16px;
  }
}
@media (max-width: 1024px) {
  .photo-view .pv-top .photo-information-wrap .comment-area .button-group {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .photo-view .pv-top .photo-information-wrap .comment-area .button-group {
    grid-template-columns: repeat(4, 1fr);
  }
}
.photo-view .pv-top .photo-information-wrap .comment-area .button-group > a {
  width: auto;
  height: 40px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-weight: 300;
  line-height: 1;
  color: black;
  border: 1px solid #aaa;
  background: white;
  transition: all 0.2s ease-in-out;
  padding: 0 16px;
  flex: 0 0 auto;
}
@media (max-width: 1280px) {
  .photo-view .pv-top .photo-information-wrap .comment-area .button-group > a {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .photo-view .pv-top .photo-information-wrap .comment-area .button-group > a {
    font-size: 11px;
    height: 32px;
  }
}
.photo-view .pv-top .photo-information-wrap .comment-area .button-group > a:hover {
  color: white;
  border: 1px solid black;
  background: black;
}
.photo-view .pv-top .photo-information-wrap .guide-area {
  width: 100%;
  padding-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-bottom: 1px solid #aaa;
}
@media (max-width: 1280px) {
  .photo-view .pv-top .photo-information-wrap .guide-area {
    padding-bottom: 24px;
  }
}
.photo-view .pv-top .photo-information-wrap .guide-area .area-tit {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  color: black;
}
@media (max-width: 1280px) {
  .photo-view .pv-top .photo-information-wrap .guide-area .area-tit {
    font-size: 14px;
  }
}
.photo-view .pv-top .photo-information-wrap .guide-area .guide-tabs {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 1280px) {
  .photo-view .pv-top .photo-information-wrap .guide-area .guide-tabs {
    gap: 1rem;
  }
}
.photo-view .pv-top .photo-information-wrap .guide-area .guide-tabs .item {
  width: 100%;
  height: 40px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  border: 1px solid #aaa;
  transition: all 0.2s ease-in-out;
}
@media (max-width: 768px) {
  .photo-view .pv-top .photo-information-wrap .guide-area .guide-tabs .item {
    height: 32px;
    gap: 4px;
  }
}
.photo-view .pv-top .photo-information-wrap .guide-area .guide-tabs .item > span {
  font-size: 1rem;
  line-height: 1.4;
  color: black;
  transition: inherit;
}
@media (max-width: 768px) {
  .photo-view .pv-top .photo-information-wrap .guide-area .guide-tabs .item > span {
    font-size: 13px;
  }
}
.photo-view .pv-top .photo-information-wrap .guide-area .guide-tabs .item > svg {
  width: auto;
  height: 1rem;
  fill: #aaa;
  transition: inherit;
}
.photo-view .pv-top .photo-information-wrap .guide-area .guide-tabs .item:hover {
  border-color: black;
  background: black;
}
.photo-view .pv-top .photo-information-wrap .guide-area .guide-tabs .item:hover > span {
  color: white;
}
.photo-view .pv-top .photo-information-wrap .modal-background {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease-in-out;
}
.photo-view .pv-top .photo-information-wrap .modal-background.on {
  opacity: 1;
  visibility: visible;
}
.photo-view .pv-top .photo-information-wrap .guide-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 95%;
  height: 90%;
  padding-top: 76px;
  max-width: 480px;
  max-height: 768px;
  display: flex;
  flex-direction: column;
  z-index: 1001;
  background: white;
  border: 1px solid #ddd;
  border-radius: 1rem;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  transition: all 0.2s ease-in-out;
}
.photo-view .pv-top .photo-information-wrap .guide-modal.active {
  visibility: visible;
  opacity: 1;
}
.photo-view .pv-top .photo-information-wrap .guide-modal .guide-modal-head {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  background: white;
  box-shadow: 0 0 1rem -4px rgba(0, 0, 0, 0.5);
}
.photo-view .pv-top .photo-information-wrap .guide-modal .guide-modal-head .modal-tit-wrap {
  position: relative;
  width: 100%;
  height: 40px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid #ddd;
}
.photo-view .pv-top .photo-information-wrap .guide-modal .guide-modal-head .modal-tit-wrap .modal-title {
  font-size: 1rem;
  font-weight: 700;
  color: #2D2D2D;
  word-break: keep-all;
  text-align: center;
}
.photo-view .pv-top .photo-information-wrap .guide-modal .guide-modal-head .modal-tit-wrap .guide-modal-close {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  cursor: pointer;
}
.photo-view .pv-top .photo-information-wrap .guide-modal .guide-modal-head .modal-tit-wrap .guide-modal-close > svg {
  width: 100%;
  height: auto;
  fill: #707070;
}
.photo-view .pv-top .photo-information-wrap .guide-modal .guide-modal-head .guide-modal-tabs {
  width: 100%;
  display: flex;
  flex-direction: row;
}
.photo-view .pv-top .photo-information-wrap .guide-modal .guide-modal-head .guide-modal-tabs .item {
  position: relative;
  height: 36px;
  flex: 1 1 10%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  color: #3D3D3D;
  word-break: keep-all;
  text-align: center;
  cursor: pointer;
}
.photo-view .pv-top .photo-information-wrap .guide-modal .guide-modal-head .guide-modal-tabs .item::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 24px;
  height: 0px;
  background: black;
  transition: all 0.2s ease-in-out;
}
.photo-view .pv-top .photo-information-wrap .guide-modal .guide-modal-head .guide-modal-tabs .item.active::after, .photo-view .pv-top .photo-information-wrap .guide-modal .guide-modal-head .guide-modal-tabs .item:hover::after {
  height: 4px;
}
.photo-view .pv-top .photo-information-wrap .guide-modal .guide-modal-body {
  width: 100%;
  height: auto;
  padding: 1rem;
  flex: 1 1 auto;
  overflow-y: auto;
}
.photo-view .pv-top .photo-information-wrap .guide-modal .guide-modal-body .guide-content-box {
  width: 100%;
  display: none;
  flex-direction: column;
  gap: 1rem;
}
.photo-view .pv-top .photo-information-wrap .guide-modal .guide-modal-body .guide-content-box.active {
  display: flex;
}
.photo-view .pv-top .photo-information-wrap .guide-modal .guide-modal-body .guide-content-box .content-tit {
  font-size: 1rem;
  line-height: 1.4;
  font-weight: 700;
  color: #2D2D2D;
  word-break: keep-all;
}
.photo-view .pv-top .photo-information-wrap .guide-modal .guide-modal-body .guide-content-box .content-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.photo-view .pv-top .photo-information-wrap .guide-modal .guide-modal-body .guide-content-box .content-list .item {
  position: relative;
  padding-left: 12px;
  font-size: 14px;
  color: #3D3D3D;
  line-height: 18px;
  word-break: keep-all;
}
.photo-view .pv-top .photo-information-wrap .guide-modal .guide-modal-body .guide-content-box .content-list .item::before {
  content: "·";
  position: absolute;
  left: 4px;
  top: 0;
  font-weight: 700;
  color: black;
}
.photo-view .pv-top .photo-information-wrap .guide-modal .guide-modal-body .guide-content-box .content-caution {
  font-size: 14px;
  line-height: 1.4;
  font-weight: 600;
  color: #FF4D53;
  word-break: keep-all;
}
.photo-view .pv-top .photo-information-wrap .guide-modal .guide-modal-body .guide-content-box .special-content {
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border: 1px solid #ddd;
}
.photo-view .pv-top .photo-information-wrap .guide-modal .guide-modal-body .guide-content-box .special-content > b {
  font-size: 14px;
  line-height: 1.3;
  font-weight: 600;
  color: #2D2D2D;
  word-break: keep-all;
}
.photo-view .pv-top .photo-information-wrap .guide-modal .guide-modal-body .guide-content-box .special-content .special-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.photo-view .pv-top .photo-information-wrap .guide-modal .guide-modal-body .guide-content-box .special-content .special-list .spec-item {
  position: relative;
  padding-left: 8px;
  font-size: 13px;
  line-height: 1rem;
  word-break: keep-all;
  color: #3D3D3D;
}
.photo-view .pv-top .photo-information-wrap .guide-modal .guide-modal-body .guide-content-box .delivery-notice {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.photo-view .pv-top .photo-information-wrap .guide-modal .guide-modal-body .guide-content-box .delivery-notice .item {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.photo-view .pv-top .photo-information-wrap .guide-modal .guide-modal-body .guide-content-box .delivery-notice .item > b {
  font-size: 14px;
  line-height: 1.3;
  font-weight: 600;
  color: #2D2D2D;
  word-break: keep-all;
}
.photo-view .pv-top .photo-information-wrap .guide-modal .guide-modal-body .guide-content-box .delivery-notice .item > p {
  font-size: 14px;
  line-height: 1.6;
  font-weight: 500;
  color: #3D3D3D;
  word-break: keep-all;
}
.photo-view .pv-top .photo-information-wrap .guide-modal .guide-modal-body .guide-content-box .delivery-notice .item > p > em {
  color: black;
  font-weight: 600;
}
.photo-view .pv-top .photo-information-wrap .guide-modal .guide-modal-body .guide-content-box .delivery-notice .item > p .mail {
  color: black;
  text-decoration: underline;
}
.photo-view .pv-top .photo-information-wrap .desc-area {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.photo-view .pv-top .photo-information-wrap .desc-area .desc-article {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.photo-view .pv-top .photo-information-wrap .desc-area .desc-article .desc-tit {
  font-size: 16px;
  font-weight: 700;
  color: black;
}
@media (max-width: 1280px) {
  .photo-view .pv-top .photo-information-wrap .desc-area .desc-article .desc-tit {
    font-size: 14px;
  }
}
.photo-view .pv-top .photo-information-wrap .desc-area .desc-article .desc-con {
  width: 100%;
  font-size: 15px;
  line-height: 1.4;
  font-weight: 300;
  color: black;
  word-break: keep-all;
}
@media (max-width: 1280px) {
  .photo-view .pv-top .photo-information-wrap .desc-area .desc-article .desc-con {
    font-size: 13px;
  }
}
.photo-view .pv-top .photo-information-wrap .desc-area .desc-article .personal-infos {
  width: 100%;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px 8px;
}
@media (max-width: 1280px) {
  .photo-view .pv-top .photo-information-wrap .desc-area .desc-article .personal-infos {
    gap: 12px 8px;
  }
}
.photo-view .pv-top .photo-information-wrap .desc-area .desc-article .personal-infos dt, .photo-view .pv-top .photo-information-wrap .desc-area .desc-article .personal-infos dd {
  font-size: 15px;
  line-height: 1.2;
  font-weight: 300;
  color: black;
  word-break: keep-all;
}
@media (max-width: 1280px) {
  .photo-view .pv-top .photo-information-wrap .desc-area .desc-article .personal-infos dt, .photo-view .pv-top .photo-information-wrap .desc-area .desc-article .personal-infos dd {
    font-size: 13px;
  }
}
.photo-view .pv-top .photo-information-wrap .desc-area .desc-article .personal-infos dt {
  font-weight: 600;
}
.photo-view .pv-top .art-description-wrap {
  width: 100%;
  padding: 20px;
  grid-column: span 12;
  border: 1px solid #aaa;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (max-width: 1280px) {
  .photo-view .pv-top .art-description-wrap {
    padding: 1rem;
  }
}
.photo-view .pv-top .art-description-wrap .desc-title {
  font-size: 1rem;
  font-weight: 700;
  color: black;
}
@media (max-width: 1280px) {
  .photo-view .pv-top .art-description-wrap .desc-title {
    font-size: 14px;
  }
}
.photo-view .pv-top .art-description-wrap .desc-con {
  width: 100%;
}
.photo-view .pv-top .art-description-wrap .desc-con span {
  font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif !important;
  font-weight: 300;
  font-size: 15px !important;
  line-height: 1.6 !important;
}
@media (max-width: 1280px) {
  .photo-view .pv-top .art-description-wrap .desc-con span {
    font-size: 13px !important;
  }
}
.photo-view .pv-top .art-description-wrap .desc-con img {
  width: 100%;
  height: auto;
}
.photo-view .pv-top .art-description-wrap .desc-con b {
  font-weight: bold;
}
.photo-view .pv-top .art-description-wrap .desc-con b * {
  font-weight: bold;
}
.photo-view .buy-guide-section {
  width: 100%;
  padding-bottom: 48px;
  margin-bottom: 48px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  border-bottom: 1px solid #aaa;
}
@media (max-width: 1280px) {
  .photo-view .buy-guide-section {
    padding-bottom: 32px;
    margin-bottom: 32px;
    gap: 20px;
  }
}
.photo-view .buy-guide-section .sec-tit {
  font-size: 20px;
  font-weight: 800;
  color: black;
}
@media (max-width: 480px) {
  .photo-view .buy-guide-section .sec-tit {
    font-size: 1rem;
  }
}
.photo-view .buy-guide-section .section-body {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.photo-view .buy-guide-section .section-body .section-desc-box {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (max-width: 1280px) {
  .photo-view .buy-guide-section .section-body .section-desc-box {
    gap: 8px;
  }
}
.photo-view .buy-guide-section .section-body .section-desc-box .box-tit {
  font-size: 18px;
  line-height: 1.3;
  font-weight: 700;
  color: #2D2D2D;
  word-break: keep-all;
}
@media (max-width: 768px) {
  .photo-view .buy-guide-section .section-body .section-desc-box .box-tit {
    font-size: 1rem;
  }
}
.photo-view .buy-guide-section .section-body .section-desc-box .box-desc {
  font-size: 16px;
  line-height: 1.3;
  color: #3D3D3D;
  word-break: keep-all;
}
@media (max-width: 1280px) {
  .photo-view .buy-guide-section .section-body .section-desc-box .box-desc {
    font-size: 15px;
  }
}
@media (max-width: 768px) {
  .photo-view .buy-guide-section .section-body .section-desc-box .box-desc {
    font-size: 14px;
  }
}
.photo-view .buy-guide-section .section-body .buy-informations {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 2rem;
}
@media (max-width: 1280px) {
  .photo-view .buy-guide-section .section-body .buy-informations {
    gap: 24px;
  }
}
@media (max-width: 768px) {
  .photo-view .buy-guide-section .section-body .buy-informations {
    flex-direction: column;
    gap: 0;
  }
}
.photo-view .buy-guide-section .section-body .buy-informations .item {
  flex: 1 1 30%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (max-width: 768px) {
  .photo-view .buy-guide-section .section-body .buy-informations .item {
    flex: unset;
    width: 100%;
  }
  .photo-view .buy-guide-section .section-body .buy-informations .item:not(:last-of-type) {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #ddd;
  }
}
.photo-view .buy-guide-section .section-body .buy-informations .item .info-image {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 1/0.8;
}
.photo-view .buy-guide-section .section-body .buy-informations .item .info-image > img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.photo-view .buy-guide-section .section-body .buy-informations .item .info-descs {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (max-width: 1280px) {
  .photo-view .buy-guide-section .section-body .buy-informations .item .info-descs {
    gap: 8px;
  }
}
.photo-view .buy-guide-section .section-body .buy-informations .item .info-descs .desc-name {
  font-size: 18px;
  line-height: 1.3;
  font-weight: 700;
  color: #2D2D2D;
  word-break: keep-all;
}
@media (max-width: 1280px) {
  .photo-view .buy-guide-section .section-body .buy-informations .item .info-descs .desc-name {
    font-size: 1rem;
  }
}
.photo-view .buy-guide-section .section-body .buy-informations .item .info-descs .desc-cont {
  font-size: 16px;
  line-height: 1.6;
  color: #3D3D3D;
  word-break: keep-all;
}
@media (max-width: 1280px) {
  .photo-view .buy-guide-section .section-body .buy-informations .item .info-descs .desc-cont {
    font-size: 14px;
  }
}
.photo-view .pv-bottom {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
@media (max-width: 1280px) {
  .photo-view .pv-bottom {
    gap: 40px;
  }
}
@media (max-width: 768px) {
  .photo-view .pv-bottom {
    gap: 32px;
  }
}
.photo-view .pv-bottom .anothers {
  font-size: 20px;
  font-weight: 800;
  color: black;
}
@media (max-width: 480px) {
  .photo-view .pv-bottom .anothers {
    font-size: 16px;
  }
}
.photo-view .pv-bottom .swiper-box {
  position: relative;
  width: 100%;
  padding: 0 180px;
}
@media (max-width: 1280px) {
  .photo-view .pv-bottom .swiper-box {
    padding: 0 60px;
  }
}
@media (max-width: 768px) {
  .photo-view .pv-bottom .swiper-box {
    padding: 0 40px;
  }
}
.photo-view .pv-bottom .swiper-box .nowon-bottom-swiper {
  position: relative;
  width: 100%;
  padding-bottom: 32px;
  overflow: hidden;
}
.photo-view .pv-bottom .swiper-box .nowon-bottom-swiper .swiper-wrapper {
  width: 100%;
  height: auto;
}
.photo-view .pv-bottom .swiper-box .nowon-bottom-swiper .swiper-wrapper .swiper-slide > a {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  display: block;
  overflow: hidden;
}
@media (max-width: 1280px) {
  .photo-view .pv-bottom .swiper-box .nowon-bottom-swiper .swiper-wrapper .swiper-slide > a {
    display: flex;
    flex-direction: column-reverse;
    aspect-ratio: unset;
  }
}
.photo-view .pv-bottom .swiper-box .nowon-bottom-swiper .swiper-wrapper .swiper-slide > a .slide-cover {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: all 0.2s ease-in-out;
  z-index: 3;
}
@media (max-width: 1280px) {
  .photo-view .pv-bottom .swiper-box .nowon-bottom-swiper .swiper-wrapper .swiper-slide > a .slide-cover {
    position: relative;
    height: auto;
    gap: 12px;
    background: black;
    opacity: 1;
  }
}
.photo-view .pv-bottom .swiper-box .nowon-bottom-swiper .swiper-wrapper .swiper-slide > a .slide-cover:hover {
  opacity: 1;
}
.photo-view .pv-bottom .swiper-box .nowon-bottom-swiper .swiper-wrapper .swiper-slide > a .slide-cover .tit-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.photo-view .pv-bottom .swiper-box .nowon-bottom-swiper .swiper-wrapper .swiper-slide > a .slide-cover .tit-wrap .tit {
  font-size: 18px;
  font-weight: 800;
  line-height: 1.2;
  color: white;
  word-break: break-all;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  text-overflow: ellipsis;
  overflow: hidden;
}
@media (max-width: 1280px) {
  .photo-view .pv-bottom .swiper-box .nowon-bottom-swiper .swiper-wrapper .swiper-slide > a .slide-cover .tit-wrap .tit {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .photo-view .pv-bottom .swiper-box .nowon-bottom-swiper .swiper-wrapper .swiper-slide > a .slide-cover .tit-wrap .tit {
    font-size: 14px;
  }
}
.photo-view .pv-bottom .swiper-box .nowon-bottom-swiper .swiper-wrapper .swiper-slide > a .slide-cover .tit-wrap .artist {
  font-size: 15px;
  font-weight: 300;
  line-height: 1;
  color: white;
  text-align: center;
  word-break: break-all;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  text-overflow: ellipsis;
  overflow: hidden;
}
@media (max-width: 1280px) {
  .photo-view .pv-bottom .swiper-box .nowon-bottom-swiper .swiper-wrapper .swiper-slide > a .slide-cover .tit-wrap .artist {
    font-size: 13px;
  }
}
.photo-view .pv-bottom .swiper-box .nowon-bottom-swiper .swiper-wrapper .swiper-slide > a .slide-cover > svg {
  width: 32px;
  height: auto;
  margin: 24px 0;
  fill: white;
}
@media (max-width: 1280px) {
  .photo-view .pv-bottom .swiper-box .nowon-bottom-swiper .swiper-wrapper .swiper-slide > a .slide-cover > svg {
    display: none;
  }
}
.photo-view .pv-bottom .swiper-box .nowon-bottom-swiper .swiper-wrapper .swiper-slide > a .slide-cover .price-tag {
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
  color: white;
  text-align: center;
}
@media (max-width: 1280px) {
  .photo-view .pv-bottom .swiper-box .nowon-bottom-swiper .swiper-wrapper .swiper-slide > a .slide-cover .price-tag {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .photo-view .pv-bottom .swiper-box .nowon-bottom-swiper .swiper-wrapper .swiper-slide > a .slide-cover .price-tag {
    font-size: 14px;
  }
}
.photo-view .pv-bottom .swiper-box .nowon-bottom-swiper .swiper-wrapper .swiper-slide > a .slide-cover .sold-out {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
}
.photo-view .pv-bottom .swiper-box .nowon-bottom-swiper .swiper-wrapper .swiper-slide > a .slide-cover .sold-out .circle {
  width: 1rem;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 5000rem;
  background: #FF4D53;
}
@media (max-width: 1280px) {
  .photo-view .pv-bottom .swiper-box .nowon-bottom-swiper .swiper-wrapper .swiper-slide > a .slide-cover .sold-out .circle {
    width: 14px;
  }
}
@media (max-width: 768px) {
  .photo-view .pv-bottom .swiper-box .nowon-bottom-swiper .swiper-wrapper .swiper-slide > a .slide-cover .sold-out .circle {
    width: 12px;
  }
}
.photo-view .pv-bottom .swiper-box .nowon-bottom-swiper .swiper-wrapper .swiper-slide > a > img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1280px) {
  .photo-view .pv-bottom .swiper-box .nowon-bottom-swiper .swiper-wrapper .swiper-slide > a > img {
    position: relative;
    left: unset;
    top: unset;
    height: auto;
    transform: unset;
    aspect-ratio: 1/1;
  }
}
.photo-view .pv-bottom .swiper-box .nowon-bottom-swiper .swiper-pagination {
  position: absolute;
  top: unset;
  bottom: 0;
}
.photo-view .pv-bottom .swiper-box .nowon-bottom-swiper .swiper-pagination .swiper-pagination-bullet-active {
  background: black;
}
.photo-view .pv-bottom .swiper-box .swiper-custom-navigation {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.photo-view .pv-bottom .swiper-box .swiper-custom-navigation div {
  cursor: pointer;
}
.photo-view .pv-bottom .swiper-box .swiper-custom-navigation svg {
  width: auto;
  height: 36px;
  fill: black;
}
@media (max-width: 768px) {
  .photo-view .pv-bottom .swiper-box .swiper-custom-navigation svg {
    height: 28px;
  }
}

.business {
  width: 95%;
}
.business .gallery-wrap {
  grid-column: span 4;
  position: sticky;
  top: 247px;
  width: 100%;
  padding-right: 120px;
  align-self: flex-start;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1280px) {
  .business .gallery-wrap {
    padding-right: 48px;
  }
}
@media (max-width: 768px) {
  .business .gallery-wrap {
    position: relative;
    top: unset;
    padding-right: 0;
    margin-bottom: 16px;
    grid-column: span 12;
  }
}
.business .gallery-wrap .gal-subject {
  width: 100%;
  padding-bottom: 12px;
  margin-bottom: 16px;
  font-size: 24px;
  font-weight: 700;
  color: black;
  border-bottom: 1px solid #aaa;
}
@media (max-width: 1280px) {
  .business .gallery-wrap .gal-subject {
    padding-bottom: 8px;
    margin-bottom: 12px;
    font-size: 20px;
  }
}
.business .gallery-wrap .gal-description {
  font-size: 18px;
  color: black;
  line-height: 2;
  text-align: right;
  word-break: keep-all;
}
@media (max-width: 1280px) {
  .business .gallery-wrap .gal-description {
    line-height: 1.4;
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .business .gallery-wrap .gal-description {
    text-align: left;
  }
}
.business .business-form-wrap {
  grid-column: span 8;
  width: 100%;
  height: auto;
  padding: 120px 76px;
  background: white;
  border: 1px solid black;
}
@media (max-width: 1280px) {
  .business .business-form-wrap {
    padding: 60px 40px;
  }
}
@media (max-width: 768px) {
  .business .business-form-wrap {
    grid-column: span 12;
  }
}
@media (max-width: 640px) {
  .business .business-form-wrap {
    padding: 32px 16px;
  }
}
.business .business-form-wrap .business-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
@media (max-width: 1280px) {
  .business .business-form-wrap .business-form {
    gap: 32px;
  }
}
.business .business-form-wrap .business-form .form-group {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.business .business-form-wrap .business-form .form-group .caution {
  margin-bottom: 12px;
  align-self: flex-end;
  font-size: 16px;
  font-weight: 300;
  color: red;
  word-break: keep-all;
}
@media (max-width: 1280px) {
  .business .business-form-wrap .business-form .form-group .caution {
    font-size: 13px;
  }
}
.business .business-form-wrap .business-form .form-group .form-box {
  width: 100%;
  padding-top: 24px;
  border-top: 2px solid black;
}
@media (max-width: 1280px) {
  .business .business-form-wrap .business-form .form-group .form-box {
    padding-top: 16px;
  }
}
.business .business-form-wrap .business-form .form-group .form-box .input-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 20px;
}
@media (max-width: 1280px) {
  .business .business-form-wrap .business-form .form-group .form-box .input-grid {
    grid-template-columns: 1fr;
    gap: 20px 16px;
  }
}
.business .business-form-wrap .business-form .form-group .form-box .input-grid .cell {
  width: 100%;
  padding-bottom: 12px;
  display: flex;
  flex-direction: row;
  border-bottom: 1px solid #aaa;
}
@media (max-width: 1280px) {
  .business .business-form-wrap .business-form .form-group .form-box .input-grid .cell {
    padding-bottom: 8px;
  }
}
.business .business-form-wrap .business-form .form-group .form-box .input-grid .cell:nth-of-type(n+6):nth-of-type(-n+7) {
  grid-row: 4/5;
}
@media (max-width: 1280px) {
  .business .business-form-wrap .business-form .form-group .form-box .input-grid .cell:nth-of-type(n+6):nth-of-type(-n+7) {
    grid-row: unset;
  }
}
.business .business-form-wrap .business-form .form-group .form-box .input-grid .cell > label {
  flex: 0 0 76px;
  font-size: 15px;
  margin-right: 12px;
  line-height: 28px;
  font-weight: 700;
  color: black;
  word-break: keep-all;
}
@media (max-width: 1280px) {
  .business .business-form-wrap .business-form .form-group .form-box .input-grid .cell > label {
    font-size: 14px;
    line-height: 24px;
  }
}
.business .business-form-wrap .business-form .form-group .form-box .input-grid .cell > input {
  flex: 1 1 auto;
  width: 100%;
  height: 28px;
  min-width: 48px;
  font-size: 15px;
  font-weight: 500;
  color: black;
  border: none;
  outline: none;
}
@media (max-width: 1280px) {
  .business .business-form-wrap .business-form .form-group .form-box .input-grid .cell > input {
    height: 24px;
    font-size: 14px;
  }
}
.business .business-form-wrap .business-form .form-group .form-box .content-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.business .business-form-wrap .business-form .form-group .form-box .content-wrap > label {
  margin-bottom: 14px;
  font-size: 15px;
  font-weight: 700;
  color: black;
}
@media (max-width: 1280px) {
  .business .business-form-wrap .business-form .form-group .form-box .content-wrap > label {
    font-size: 14px;
  }
}
.business .business-form-wrap .business-form .form-group .form-box .content-wrap > textarea {
  width: 100%;
  height: auto;
  padding: 8px;
  border: 1px solid #707070;
  font-size: 16px;
  resize: none;
}
@media (max-width: 1280px) {
  .business .business-form-wrap .business-form .form-group .form-box .content-wrap > textarea {
    font-size: 14px;
  }
}
.business .business-form-wrap .business-form .submit-group {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
@media (max-width: 1280px) {
  .business .business-form-wrap .business-form .submit-group {
    gap: 24px;
  }
}
.business .business-form-wrap .business-form .submit-group .privacy-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}
.business .business-form-wrap .business-form .submit-group .privacy-row input {
  width: 16px;
  height: 16px;
  border: 1px solid #707070;
  border-radius: 0;
}
@media (max-width: 1280px) {
  .business .business-form-wrap .business-form .submit-group .privacy-row input {
    width: 13px;
    height: 13px;
  }
}
.business .business-form-wrap .business-form .submit-group .privacy-row label {
  font-size: 15px;
  font-weight: 300;
  color: black;
  word-break: keep-all;
  line-height: 1.4;
}
@media (max-width: 1280px) {
  .business .business-form-wrap .business-form .submit-group .privacy-row label {
    font-size: 12px;
  }
}
.business .business-form-wrap .business-form .submit-group > button {
  width: 120px;
  height: 40px;
  background: white;
  border: 1px solid #aaa;
  font-size: 15px;
  font-weight: 300;
  color: black;
}
@media (max-width: 1280px) {
  .business .business-form-wrap .business-form .submit-group > button {
    width: 100px;
    height: 32px;
    font-size: 13px;
  }
}/*# sourceMappingURL=sub.css.map */