#kv {
  width: 100%;
  background-color: #f6f6f6;
}

#kv img {
  width: 100%;
  display: block;
  min-height: 390px;
  object-fit: cover;
}

@media (max-width:1300px) {
  #kv img {
    min-height: 300px;
    object-position: calc(0% - 290px) center;
  }
}

@media (max-width:768px) {
  #kv img {
    min-height: unset;
    object-position: unset;
  }
}

/* new */

#new {
  background-color: #f6f6f6;
}

#new .box {
  max-width: 1130px;
  padding: 80px 0 164px;
}

#new .section {
  margin-bottom: 87px;
}

#new .section:last-child {
  margin-bottom: unset;
}

#new .title {
  font-weight: 700;
  font-size: 30px;
  line-height: 150%;
  letter-spacing: 1px;
  color: #000000;
  margin-bottom: 55px;
}

#new .icon_box {
  display: flex;
  align-items: center;
}

#new .icon_box .icon {
  width: 32px;
  height: 32px;
}

#new .icon_box .icon_text {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #C7C7C7;
}

#new .label {
  padding: 4px 10px;
  border-radius: 4px;
  background-color: #B9CDD4;
  font-size: 14px;
  line-height: 150%;
  color: #000000;
  margin: 3px;
}

#new .card {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

#new .new_card {
  height: 431px;
}

#new .card_l {
  width: calc(100% - 450px);
  height: 100%;
  position: relative;
}

#new .card_l .mainImg {
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  pointer-events: painted;
}

#new .card_l .texts {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 14px 34px;
  background-color: rgb(0 0 0 / 59%);
}

#new .card_l .texts .text_title {
  font-weight: 700;
  font-size: 34px;
  line-height: 150%;
  color: #FFFFFF;
  margin-bottom: 10px;
}

#new .card_l .mainCard_labels {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

#new .card_l .mainCard_labels .label_l,
#new .card_l .mainCard_labels .label_r {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

#new .card_r {
  width: 450px;
  padding-left: 32px;
}

#new .card_r .lists {
  padding: 35px 16px;
  border-radius: 8px;
  background-color: #fff;
  border: 1px solid #C7C7C7;
}

#new .card_r .list {
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid #c7c7c7;
  color: #000;
  display: block;
}

#new .card_r .list:last-child {
  border-bottom: unset;
  margin-bottom: unset;
  padding-bottom: unset;
}

#new .card_r .list .list_t {
  font-weight: 700;
  font-size: 20px;
  line-height: 150%;
  color: #000000;
}

#new .card_r .list .list_icons {
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
}


#new .hot_card {
  margin-bottom: 38px;
  display: flex;
  flex-wrap: wrap;
  min-height: 208px;
}

#new .hot_card:last-child {
  margin-bottom: unset;
}

#new .hot_card .hot_card_l {
  width: 297px;
  border-radius: 8px;
  aspect-ratio: 297/208;
}

#new .hot_card .hot_card_l img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

#new .hot_card .hot_card_r {
  width: calc(100% - 298px);
  padding-left: 28px;
}

#new .hot_card .hot_card_r .layered {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  row-gap: 8px;
}

#new .hot_card .hot_card_r .hot_card_t {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-weight: 700;
  font-size: 26px;
  line-height: 150%;
  color: #000000;
  margin-bottom: 5px;
}

#new .hot_card .hot_card_r .hot_card_labels,
#new .hot_card .hot_card_r .hot_card_icons {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}


#new .typeBox {
  width: 100%;
}

#new .typeBox .box_t {
  background-color: #478ea5;
  padding: 16px;
  border-radius: 8px 8px 0 0;
  font-weight: 700;
  font-size: 20px;
  line-height: 150%;
  color: #FFFFFF;
}

#new .typeBox .types {
  padding: 16px;
  background-color: #fff;
  border-radius: 0 0 8px 8px;
}

#new .typeBox .type {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #000;
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #C7C7C7;
}

#new .typeBox .type:last-child {
  margin-bottom: unset;
  padding-bottom: unset;
  border-bottom: unset;
}

#new .typeBox .type .type_icon {
  width: 32px;
  height: 32px;
}

#new .section2 .card_l {
  width: calc(100% - 300px);
}

#new .section2 .card_r {
  width: 300px;
}

@media (max-width:1024px) {
  #new .hot_card {
    flex-direction: column;
  }

  #new .hot_card .hot_card_l {
    width: 100%;
  }

  #new .hot_card .hot_card_r {
    width: 100%;
    padding-left: unset;
  }
}

@media (max-width:768px) {
  #new .new_card {
    height: unset;
    flex-direction: column;
    gap: 24px;
  }

  #new .hot {
    flex-direction: column-reverse;
    gap: 24px;
  }

  #new .card_l,
  #new .section2 .card_l {
    width: 100%;
  }

  #new .card_r,
  #new .section2 .card_r {
    width: 100%;
    padding-left: unset;
  }

  #new .typeBox .types {
    min-height: unset;
    display: flex;
    flex-wrap: wrap;
  }

  #new .typeBox .type {
    padding-bottom: unset;
    margin-bottom: unset;
    border-bottom: unset;
    padding-right: 10px;
    margin-right: 10px;
    border-right: 1px solid #c7c7c7;
  }

  #new .typeBox .type:last-child {
    padding-right: unset;
    margin-right: unset;
    border-right: unset;
  }
}

@media (max-width:480px) {

  #new .section {
    margin-bottom: 80px;
  }

  #new .box {
    padding: 40px 0;
  }

  #new .title {
    margin-bottom: 40px;
    font-size: 26px;
  }

  #new .card_l .texts {
    padding: 12px;
  }

  #new .card_l .texts .text_title {
    font-size: 20px;
    margin-bottom: 5px;
  }

  #new .label,
  #new .icon_box .icon_text {
    font-size: 12px;
  }

  #new .icon_box .icon {
    width: 16px;
    height: 16px;
  }

  #new .card_r .list .list_t {
    font-size: 20px;
  }

  #new .typeBox .box_t {
    font-size: 20px;
    padding: 10px 16px;
  }

  #new .typeBox .types {
    padding: 8px;
  }

  #new .hot_card .hot_card_r .hot_card_t {
    font-size: 20px;
    margin-top: 16px;
    line-clamp: 1;
    -webkit-line-clamp: 1;
  }

  #new .typeBox .type {
    margin-right: unset;
    padding-right: 5px;
  }
}




/* to top btn */
#toTop {
  position: fixed;
  right: 30px;
  bottom: 30px;
  border-radius: 8px;
  background-color: rgb(234, 234, 234);
  display: flex;
  padding: 10px;
  color: rgb(61, 108, 141);
  font-weight: 500;
  transition: .5s;
  opacity: 0;
}