/* Category Basic */


/* Category Product */
.bbs-category--product {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap:20px;
  padding-bottom:80px;
}

.bbs-category--product a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  max-width:220px;
  width:100%;
  height:50px;
  font-size:2rem;
  line-height:50px;
  color:#999999;
  background-color: #f5f5f5;
  border-radius:10px;
}

.bbs-category--product a.on {
  font-weight:700;
  color:#fff;
  background-color: #1fb8df;
}

@media screen and (max-width:1200px) {
  .bbs-category--product a {
    max-width:200px;
    font-size:1.8rem;
  }
}
@media screen and (max-width:992px) {
  .bbs-category--product {
    gap:16px;
    padding-bottom:60px;
  }
  
  .bbs-category--product a {
    max-width:160px;
    height:44px;
    line-height:44px;
  }
}
@media screen and (max-width:768px) {
  .bbs-category--product {
    gap:8px;
    padding-bottom:44px;
  }

  .bbs-category--product a {
    max-width:120px;
    height:36px;
    line-height:36px;
    font-size:1.7rem;
  }
}
@media screen and (max-width:576px) {
  .bbs-category--product {
    gap:6px;
    padding-bottom:32px;
  }

  .bbs-category--product a {
    font-size:1.6rem;
  }
}


/* Util */
.bbs-util {
  display: flex;
  justify-content: space-between;
  padding-bottom:30px;
}

.bbs-util .bbs-total {
  font-size: 1.8rem;
}

.bbs-util .bbs-total span {
  font-weight:700;
}

@media screen and (max-width:1200px) {
  .bbs-util .bbs-total {
    font-size: 1.7rem;
  }
}
@media screen and (max-width:992px) {
  .bbs-util {
    padding-bottom:24px;
  }
}
@media screen and (max-width:768px) {
  .bbs-util {
    padding-bottom:20px;
  }

  .bbs-util .bbs-total {
    font-size: 1.6rem;
  }
}
@media screen and (max-width:576px) {
  .bbs-util {
    padding-bottom:16px;
  }

  .bbs-util .bbs-total {
    font-size: 1.5rem;
  }
}


/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  margin-top:100px;
}

.pagination a {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin:0 2px;
  width:44px;
  height:44px;
  text-align:center;
  font-size:2rem;
  font-weight:400;
  color:#898989;
  background-repeat:no-repeat;
  background-position:center;
  background-color:transparent;
  -webkit-transition:all ease-out .15s;
  transition:all ease-out .15s;
}

.pagination a:not(.current) {
  cursor:pointer;
}

.pagination .current {
  font-weight:700;
  color:#333333;
}

.pagination__prev, .pagination__next {
  border:1px solid #dcdcdc;
}

.pagination__prev {
  margin-right:30px !important;  
  background-image: url('/child/img/common/btn_prev.png');
}

.pagination__next {
  margin-left:30px !important;
  background-image: url('/child/img/common/btn_next.png');
}

@media screen and (max-width:1200px) {
  .pagination a {
    font-size:1.8rem;
  }
}
@media screen and (max-width:992px) {
  .pagination {
    margin-top:80px;
  }

  .pagination a {
    width:36px;
    height:36px;
  }

  .pagination__prev {
    margin-right:24px !important;  
  }
  
  .pagination__next {
    margin-left:24px !important;
  }
  
}
@media screen and (max-width:768px) {
  .pagination {
    margin-top:60px;
  }

  .pagination a {
    font-size:1.7rem;
  }

  .pagination__prev {
    margin-right:20px !important;  
  }
  
  .pagination__next {
    margin-left:20px !important;
  }
}
@media screen and (max-width:576px) {
  .pagination {
    margin-top:44px;
  }

  .pagination a {
    width:32px;
    height:32px;
    font-size:1.6rem;
  }

  .pagination__prev {
    margin-right:16px !important;  
  }
  
  .pagination__next {
    margin-left:16px !important;
  }
}


/* Message */
.message {
  text-align: center;
  padding:120px 0px;
}

.message p {
  font-size:2rem;
}

@media screen and (max-width:1200px) {

}
@media screen and (max-width:992px) {

}
@media screen and (max-width:768px) {

}
@media screen and (max-width:576px) {

}


/* Product List */
.bbs-product .list {
  display: flex;
  flex-wrap: wrap;
  margin:-24px -12px;
}

.bbs-product .list li {
  flex:0 0 25%;
  max-width:25%;
  padding:24px 12px;
}

.bbs-product .list .img {
  position: relative;
  width:100%;
  height:0;
  padding-top:calc(302/320*100%);
  overflow: hidden;
  background-color:transparent;
  border:1px solid #bfbfbf;
  border-radius:10px;
}

.bbs-product .list .img div {
  position: absolute;
  top:0;
  left:0;
  right:0;
  bottom:0;
  width:100%;
  height:100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transition:all .35s ease-out;
}

.bbs-product .list .context {
  padding-top:30px;
}

.bbs-product .list .bbs-category {
  display: block;
  font-size:1.8rem;
  line-height: 1;
  color:#999999;
  margin-bottom:12px;
}

.bbs-product .list .bbs-subject {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1; 
  -webkit-box-orient: vertical;
  font-size:2.4rem;
  font-weight:500;
}

@media (min-width:1201px) {
  .bbs-product .list li:hover .img div {
    transform: scale(1.05);
  }
}
@media screen and (max-width:1200px) {
  .bbs-product .list .bbs-category {
    font-size:1.7rem;
  }

  .bbs-product .list .bbs-subject {
    font-size:2rem;
  }
}
@media screen and (max-width:992px) {
  .bbs-product .list {
    margin:-20px -6px;
  }
  
  .bbs-product .list li {
    padding:20px 6px;
  }

  .bbs-product .list .context {
    padding-top:24px;
  }

  .bbs-product .list .bbs-category {
    margin-bottom:10px;
  }
}
@media screen and (max-width:768px) {
  .bbs-product .list {
    margin:-16px -6px;
  }
  
  .bbs-product .list li {
    flex:0 0 33.33%;
    max-width:33.33%;
    padding:16px 6px;
  }
  
  .bbs-product .list .context {
    padding-top:20px;
  }

  .bbs-product .list .bbs-category {
    font-size:1.6rem;
  }

  .bbs-product .list .bbs-subject {
    font-size:1.8rem;
  }
}
@media screen and (max-width:576px) {
  .bbs-product .list {
    margin:-12px -4px;
  }
  
  .bbs-product .list li {
    flex:0 0 50%;
    max-width:50%;
    padding:12px 4px;
  }

  .bbs-product .list .context {
    padding-top:16px;
  }

  .bbs-product .list .bbs-category {
    font-size:1.4rem;
    margin-bottom:6px;
  }

  .bbs-product .list .bbs-subject {
    font-size:1.7rem;
  }
}


/* Product View */
.bbs-view--product .detail {
  padding:120px 0px;
}

.bbs-view--product .detail .din {
  display: flex;
  align-items: center;
  background-color: #f5f5f5;
  margin:-20px;
  padding:60px;
}

.bbs-view--product .detail .lt,
.bbs-view--product .detail .rt {
  flex:1 1 50%;
  max-width:50%;
  padding:20px;
}

.bbs-view--product .detail .img {
  position: relative;
  width:100%;
  height:0;
  padding-top:calc(560/560*100%);
  background-color: #fff;
  border-radius:10px;
  overflow: hidden;
}

.bbs-view--product .detail .img div {
  position: absolute;
  top:50%;
  left:50%;
  transform: translate(-50%,-50%);
  width:100%;
  height:100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size:cover;
}

.bbs-view--product .detail .context {
  padding:0px 40px;
}

.bbs-view--product .detail .bbs-subject {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2; 
  -webkit-box-orient: vertical;
  position: relative;
  height:3em;
  font-size:3.6rem;
  font-weight:700;
  line-height:1.4;
}

.bbs-view--product .detail .line {
  display: block;
  width: 130px;
  height:2px;
  margin:40px 0px;
  background-color: #aaaaaa;
}

.bbs-view--product .detail .bbs-text {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 7; 
  -webkit-box-orient: vertical;
  font-size:2rem;
  line-height:1.7;
}

.bbs-view--product .video {
  position: relative;
  padding:120px 0px;
}

.bbs-view--product .video::after {
  content:"";
  display: block;
  position: absolute;
  top:0;
  left:50%;
  transform: translateX(-50%);
  width:100vw;
  height:100%;
  background-color: #f5f5f5;
  z-index:-1;
}

.bbs-view--product .video .list {
  display: flex;
  flex-wrap: wrap;
  margin:-20px;
}

.bbs-view--product .video .list li {
  flex:0 0 50%;
  max-width:50%;
  padding:20px;
}

.bbs-view--product .video .list .box {
  position: relative;
  width:100%;
  height:0;
  padding-top:calc(400/620*100%);
  border-radius:10px;
  background-color: #000;
  overflow: hidden;
}

.bbs-view--product .video .list  iframe {
  position: absolute;
  top:50%;
  left:50%;
  transform: translate(-50%,-50%);
  width:100%;
  height:100%;
}

.bbs-view--product .relate {
  padding:120px 0px;
}

.bbs-view--product .relate .list {
  display: flex;
  flex-wrap: wrap;
  margin:-20px;
}

.bbs-view--product .relate .list li {
  flex:0 0 33.33%;
  max-width:33.33%;
  padding:20px;
}

.bbs-view--product .relate .list .img {
  position: relative;
  width:100%;
  height:0;
  padding-top:calc(400/400*100%);
  overflow: hidden;
  background-color:transparent;
  border:1px solid #bfbfbf;
  border-radius:10px;
}

.bbs-view--product .relate .list .img div {
  position: absolute;
  top:0;
  left:0;
  right:0;
  bottom:0;
  width:100%;
  height:100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size:cover;
  transition:all .35s ease-out;
}

.bbs-view--product .relate .context {
  padding-top:30px;
}

.bbs-view--product .relate .bbs-category {
  display: block;
  font-size:1.8rem;
  line-height: 1;
  color:#999999;
  margin-bottom:12px;
}

.bbs-view--product .relate .bbs-subject {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1; 
  -webkit-box-orient: vertical;
  font-size:2.4rem;
  font-weight:500;
}

@media (min-width:1201px) {
  .bbs-view--product .relate .list li:hover .img div {
    transform: scale(1.05);
  }
}
@media screen and (max-width:1200px) {
  .bbs-view--product .detail .context {
    padding:0px;
  }

  .bbs-view--product .detail .bbs-subject {
    font-size:2.8rem;
  }

  .bbs-view--product .detail .bbs-text {
    font-size:1.8rem;
  }

  .bbs-view--product .relate .bbs-category {
    font-size:1.7rem;
  }
  
  .bbs-view--product .relate .bbs-subject {
    font-size:2rem;
  }
  
}
@media screen and (max-width:992px) {
  .bbs-view--product .detail {
    padding:100px 0px;
  }

  .bbs-view--product .detail .din {
    margin:-12px;
    padding:44px;
  }
  
  .bbs-view--product .detail .lt,
  .bbs-view--product .detail .rt {
    padding:12px;
  }
  
  .bbs-view--product .detail .line {
    width:100px;
    margin:24px 0px;
  }

  .bbs-view--product .video {
    padding:100px 0px;
  }

  .bbs-view--product .video .list {
    margin:-12px;
  }
  
  .bbs-view--product .video .list li {
    padding:12px;
  }

  .bbs-view--product .relate {
    padding:100px 0px;
  }

  .bbs-view--product .relate .list {
    margin:-12px;
  }
  
  .bbs-view--product .relate .list li {
    padding:12px;
  }

  .bbs-view--product .relate .context {
    padding-top:24px;
  }

  .bbs-view--product .relate .bbs-category {
    margin-bottom:10px;
  }
}
@media screen and (max-width:768px) {
  .bbs-view--product .detail {
    padding:80px 0px;
  }

  .bbs-view--product .detail .din {
    flex-wrap: wrap;
    padding:44px 20px;
  }

  .bbs-view--product .detail .lt,
  .bbs-view--product .detail .rt {
    flex:1 1 100%;
    max-width:100%;
    padding:0px;
  }

  .bbs-view--product .detail .context {
    padding-top:20px;
  }

  .bbs-view--product .detail .bbs-subject {
    height:inherit;
    font-size:2.4rem;
  }

  .bbs-view--product .detail .line {
    width:80px;
    margin:20px 0px;
  }

  .bbs-view--product .detail .bbs-text {
    font-size:1.7rem;
  }

  .bbs-view--product .video {
    padding:80px 0px;
  }

  .bbs-view--product .video .list {
    flex-wrap: wrap;
    margin:-6px;
  }
  
  .bbs-view--product .video .list li {
    flex:1 1 100%;
    max-width:100%;
    padding:6px;
  }

  .bbs-view--product .relate {
    padding:80px 0px;
  }

  .bbs-view--product .relate .list {
    margin:-12px -6px;
  }
  
  .bbs-view--product .relate .list li {
    padding:12px 6px;
  }

  .bbs-view--product .relate .context {
    padding-top:20px;
  }

  .bbs-view--product .relate .bbs-category {
    font-size:1.6rem;
  }

  .bbs-view--product .relate .bbs-subject {
    font-size:1.8rem;
  }
}
@media screen and (max-width:576px) {
  .bbs-view--product .detail .din {
    padding:32px 12px;
  }

  .bbs-view--product .detail .bbs-subject {
    height:inherit;
    font-size:2rem;
  }

  .bbs-view--product .detail .line {
    width:60px;
    height:1px;
    margin:12px 0px;
  }

  .bbs-view--product .detail .bbs-text {
    font-size:1.6rem;
  }

  .bbs-view--product .video .list {
    margin:-4px;
  }
  
  .bbs-view--product .video .list li {
    padding:4px;
  }

  .bbs-view--product .relate .list {
    margin:-12px -4px;
  }
  
  .bbs-view--product .relate .list li {
    flex:0 0 50%;
    max-width:50%;
    padding:12px 4px;
  }

  .bbs-view--product .relate .context {
    padding-top:16px;
  }

  .bbs-view--product .relate .bbs-category {
    font-size:1.4rem;
    margin-bottom:6px;
  }

  .bbs-view--product .relate .bbs-subject {
    font-size:1.7rem;
  }
}