@charset "utf-8";
/*==============================================================
  ■ category(PC)
==============================================================*/
.category-content .subject-block {
  margin: 40px auto 25px;
  text-align: center;
}
.category-content .subject-block .title {
  margin-bottom: 10px;
  font-size: 30px;
  font-weight: inherit;
  color: bold;
}
.category-content .subject-block .sub {
  display:none;
  font-size: 15px;
}
.category-content .result-block {
  width: 960px;
  margin: 0 auto;
}
.category-content .result-block .navHeader {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: stretch;
      align-items: stretch;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 50px;
  padding: 0 5px 7px 0;
  border-bottom: 1px solid #ddd;
}
.category-content .result-block .navHeader .title {
  visibility: hidden;
}
.category-content .result-block .navHeader .pageInfo {
  width: 220px;
  text-align: right;
  font-size: 14px;
}
.category-content .result-block .list-container .item-list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: start;
      justify-content: flex-start;
  -ms-flex-align: stretch;
      align-items: stretch;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 40px;
}
.category-content .result-block .list-container .item-list > li {
  position: relative;
  width: 308px;
  margin: 0 18px 40px 0;
  border: 1px solid #ddd;
}
.category-content .result-block .list-container .item-list > li:nth-child(3n) {
  margin-right: 0px;
}
.category-content .result-block .list-container .item-list > li[data-new="true"]:before {
  position: absolute;
  left: 4px;
  top: 4px;
  z-index: 10;
  content: "";
  width: 46px;
  height: 46px;
  background-image: url("../../common/img/ico_new.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  text-indent: 9999px;
  overflow: hidden;
  white-space: nowrap;
  width: 38px;
  height: 38px;
  pointer-events: none;
}
.category-content .result-block .list-container .item-list > li[data-new="true"]:before a {
  display: block;
  width: 100%;
  height: 100%;
}
.category-content .result-block .list-container .item-list > li[data-status="enrolled"]:after {
  position: absolute;
  right: 0px;
  top: 0px;
  z-index: 11;
  content: "";
  width: 99px;
  height: 100px;
  background-image: url("../../common/img/ico_enrolled.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  text-indent: 9999px;
  overflow: hidden;
  white-space: nowrap;
  width: 66px;
  height: 66px;
  pointer-events: none;
}
.category-content .result-block .list-container .item-list > li[data-status="enrolled"]:after a {
  display: block;
  width: 100%;
  height: 100%;
}
.category-content .result-block .list-container .item-list > li[data-status="graduated"]:after {
  position: absolute;
  right: 0px;
  top: 0px;
  z-index: 12;
  content: "";
  width: 99px;
  height: 100px;
  background-image: url("../../common/img/ico_graduated.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  text-indent: 9999px;
  overflow: hidden;
  white-space: nowrap;
  width: 66px;
  height: 66px;
  pointer-events: none;
}
.category-content .result-block .list-container .item-list > li[data-status="graduated"]:after a {
  display: block;
  width: 100%;
  height: 100%;
}
.category-content .result-block .list-container .item-list > li.is-empty {
  padding-top: 10px;
  font-size: 16px;
  border: none;
}
.category-content .result-block .list-container .item-list > li .overlay {
  position: absolute;
  left: 0px;
  top: 0px;
  z-index: 2;
  width: 100%;
  height: 203.9796px;
}
.category-content .result-block .list-container .item-list > li .overlay .letter {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  transform: translate(-50%, -50%);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  color: #fff;
  font-family: 'Istok Web';
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 5px;
  opacity: 0;
  filter: alpha(opacity=0);
  transition: all 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.category-content .result-block .list-container .item-list > li .overlay .bar {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  transform: translate(-52%, -50%);
  top: calc(50% + 11px);
  top: -webkit-calc(50% + 11px);
  width: 0px;
  height: 1.5px;
  background-color: #fff;
  transition: all 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.category-content .result-block .list-container .item-list > li .overlay .bg {
  position: absolute;
  left: 0px;
  top: 0px;
  z-index: 1;
  width: 100%;
  height: 100%;
  transition: all 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.category-content .result-block .list-container .item-list > li .overlay:hover .letter {
  opacity: 1;
  filter: alpha(opacity=100);
  letter-spacing: 3px;
  transition: all 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition-delay: 0.1s;
}
.category-content .result-block .list-container .item-list > li .overlay:hover .bar {
  width: 105px;
  transition: all 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition-delay: 0.1s;
}
.category-content .result-block .list-container .item-list > li .overlay:hover .bg {
  transition: all 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.category-content .result-block .list-container .item-list > li[data-status="enrolled"] .overlay .bg {
  background-color: rgba(249, 130, 63, 0);
}
.category-content .result-block .list-container .item-list > li[data-status="enrolled"] .overlay:hover .bg {
  background-color: rgba(249, 130, 63, 0.8);
}
.category-content .result-block .list-container .item-list > li[data-status="graduated"] .overlay .bg {
  background-color: rgba(90, 175, 244, 0);
}
.category-content .result-block .list-container .item-list > li[data-status="graduated"] .overlay:hover .bg {
  background-color: rgba(90, 175, 244, 0.8);
}
.category-content .result-block .list-container .item-list > li .image {
  height: 203.9796px;
}
.category-content .result-block .list-container .item-list > li .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  font-family: 'object-fit: cover';
}
.category-content .result-block .list-container .item-list > li .text {
  padding: 15px;
}
.category-content .result-block .list-container .item-list > li .text .genre-list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: start;
      justify-content: flex-start;
  -ms-flex-align: stretch;
      align-items: stretch;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 5px;
}
.category-content .result-block .list-container .item-list > li .text .genre-list li {
  margin: 0 5px 5px 0;
  background: #eee url("../../common/img/ico_tag.svg") no-repeat left 7px center;
  background-size: 11px 11px;
}
.category-content .result-block .list-container .item-list > li .text .genre-list li:hover {
  background-color: #ddd;
}
.category-content .result-block .list-container .item-list > li .text .genre-list li a {
  display: block;
  padding: 6px 8px 6px 23px;
  text-decoration: none;
  font-weight: bold;
  color: #555;
  font-size: 12px;
}
.category-content .result-block .list-container .item-list > li .text .title {
  line-height: 1.3;
  font-size: 20px;
  font-weight: bold;
  color: #000;
}
.category-content .result-block .list-container .item-list > li .text .title a {
  color: #000;
  text-decoration: none;
}
.category-content .result-block .list-container .item-list > li .text .title a:hover {
  text-decoration: underline;
}
.category-content .result-block .list-container .item-list > li .text .subtitle {
  margin-top: 5px;
  line-height: 1.3;
  font-size: 14px;
}
.category-content .result-block .list-container .item-list > li .text .profile {
  display: block;
  position: absolute;
  left: 0px;
  top: 175px;
  z-index: 3;
  width: 100%;
  height: 30px;
  padding: 7px 0;
  line-height: 1.3;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.5);
  font-size: 12px;
  color: #fff;
  overflow: hidden;
  pointer-events: none;
}
.category-content .result-block .list-container .item-list > li .text .update {
  position: absolute;
  left: 0px;
  top: -20px;
  z-index: auto;
  line-height: 13px;
  padding-left: 17px;
  background: url("../../common/img/ico_time.svg") no-repeat left center;
  background-size: 13px 13px;
  font-size: 12px;
  font-weight: bold;
  pointer-events: none;
}
.category-content .result-block .navFooter {
  margin-bottom: 50px;
}
.category-content .result-block .navFooter .pageButton-list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: stretch;
      align-items: stretch;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 15px;
}
.category-content .result-block .navFooter .pageButton-list li {
  margin: 0 5px;
}
.category-content .result-block .navFooter .pageButton-list li a {
  display: block;
  line-height: 40px;
  padding: 0px 17px;
  text-decoration: none;
  text-align: center;
  border: 1px solid #ccc;
  background-color: #fff;
  color: #000;
}
.category-content .result-block .navFooter .pageButton-list li a:hover {
  background-color: #333;
  color: #fff;
}
.category-content .result-block .navFooter .pageButton-list li.prev-btn a {
  background: url("../../common/img/arrow_02.svg") no-repeat center center;
  background-size: 15px 15px;
}
.category-content .result-block .navFooter .pageButton-list li.prev-btn a:before {
  content: "<";
  visibility: hidden;
}
.category-content .result-block .navFooter .pageButton-list li.prev-btn a:hover {
  background-color: #333;
  background-image: url("../../common/img/arrow_02_w.svg");
}
.category-content .result-block .navFooter .pageButton-list li.next-btn a {
  background: url("../../common/img/arrow_01.svg") no-repeat center center;
  background-size: 15px 15px;
}
.category-content .result-block .navFooter .pageButton-list li.next-btn a:before {
  content: ">";
  visibility: hidden;
}
.category-content .result-block .navFooter .pageButton-list li.next-btn a:hover {
  background-color: #333;
  background-image: url("../../common/img/arrow_01_w.svg");
}
.category-content .result-block .navFooter .pageButton-list li.cur a {
  background-color: #333;
  color: #fff;
  pointer-events: none;
}
.category-content .result-block .navFooter .pageButton-list li.is-not-active a {
  display: none;
}
.category-content .result-block .navFooter .pageInfo {
  text-align: center;
  font-size: 14px;
}

