/* Made by Masstige */
.imgToCover {
  /* background-cover */
  display: block;
  position: relative;
  overflow: hidden;
}
.imgToCover::after {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.imgToCover > img {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  height: auto;
  min-width: 1000%;
  min-height: 1000%;
  max-width: none;
  max-height: none;
  transform: translate(-50%, -50%) scale(0.1);
}

.imgToContain {
  /* background-contain */
  display: block;
  position: relative;
  overflow: hidden;
}
.imgToContain::after {
  content: "";
  display: block;
  padding-bottom: contain;
}
.imgToContain > img {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  height: auto;
  min-width: 0;
  min-height: 0;
  max-width: 100%;
  max-height: 100%;
  transform: translate(-50%, -50%);
}

.card-list__wrap {
  position: relative;
}
.card-list__wrap .swiper-button {
  display: flex;
  position: absolute;
  right: 10px;
  top: 0;
}
.card-list__wrap .swiper-button__button {
  width: 28px;
  height: 28px;
  background-color: #fff;
  border: 1px solid #e8e8e8;
  color: #666666;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-list__wrap .swiper-button--next {
  margin-left: -1px;
}
.card-list__item {
  max-width: 264px;
}
.card-list:not(.swiper-container) {
  display: flex;
  flex-wrap: wrap;
  margin-left: -12px;
  margin-right: -12px;
  margin-top: -50px;
}
.card-list:not(.swiper-container) .card-list__item {
  flex: 1 0 25%;
  max-width: 25%;
  padding-left: 12px;
  padding-right: 12px;
  margin-top: 50px;
}
.card-list:not(.swiper-container) .card-list__item.no-data {
  flex: 1 0 100%;
  max-width: 100%;
  padding-top: 50px;
  padding-bottom: 50px;
  text-align: center;
}
.card-list .link {
  display: block;
}
.card-list .img-bx {
  display: block;
  position: relative;
  overflow: hidden;
}
.card-list .img-bx::after {
  content: "";
  display: block;
  padding-bottom: 61%;
}
.card-list .img-bx > img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}

.card-list .img-bx > img.loaded {
  opacity: 1;
}
.card-list .img-bx--long {
  aspect-ratio: 1795 / 2657;
}
.card-list .img-bx--long:after {
  padding-bottom: 147.97%; /* 1795:2657 비율 */
  max-height: 323px;
}
.card-list .txt-bx {
  padding: 10px 0;
  text-align: left;
  position: relative;
}
.card-list .txt-bx .tit {
  color: #333;
  font-size: 20px;
  font-weight: 400;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-height: 1.3;
  -webkit-box-orient: vertical;
  word-wrap: break-word;
  height: 2.6em;
  padding-right: 1.25rem;
  position: relative;
  height: auto;
  max-height: 2.6em;
}
.card-list .txt-bx .tit-bx {
  font-size: 20px;
  height: 2.6em;
}
.card-list .txt-bx .txt {
  display: none;
}
.card-list .txt-bx .answer-counting {
  position: absolute;
  right: 0;
  bottom: 2px;
  font-size: 16px;
}
.card-list .info-bx {
  letter-spacing: -0.05em;
  padding-top: 10px;
  margin-top: 10px;
  border-top: 1px solid #e8e8e8;
  color: #999;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
/*# sourceMappingURL=sub.css.map */