.k-news {
  background-color: var(--white);
  border-radius: 15px;
  padding: 48px;
  margin-bottom: 40px;
}

.k-news__content {
  color: var(--text-color);
  font-family: var(--font-zen-kaku-new-type);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 180%;
  margin-bottom: 48px;
}

.k-news__list {
  display: flex;
  flex-wrap: wrap;
}

.k-news__item {
  width: 23%;
  background-color: var(--global-bg-color);
  padding: 12px;
  margin-right: 20px;
  margin-bottom: 20px;
  border-radius: 10px;
}

.k-news__item:last-child {
  margin-right: 0;
}

.k-news__item_top {
  position: relative;
}

.k-news__item_top img {
  width: 100%;
  height: 236px;
  border-radius: 10px;
  object-fit: cover;
}

.k-news__item_date {
  width: 64px;
  height: 64px;
  position: absolute;
  bottom: 8px;
  left: 8px;
  background-color: var(--white);
  padding: 13px 5px;
  border-radius: 8px;
  font-size: 14px;
  color: #0860A8;
  font-family: var(--font-rubik);
}

.k-news__item_date .strong {
  font-size: 20px;
}

.k-news__item_bottom .vertical-line {
  width: 1px;
  height: 16px;
  margin: 0 12px;
  background-color: #D3CBB8;
}

.k-news__item_bottom {
  margin: 20px 0 24px 0;
  display: flex;
  justify-content: center;
  font-family: var(--font-zen-kaku-new-type);
  line-height: 100%;
}

.k-news__item_carMaker {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 8px;
}

.k-news__item_carName {
  font-size: 20px;
  font-weight: 700;
  color: var(--blue);
}

/* news detail */
.k-newsDetail .breadcrumb {
  margin-bottom: 48px;
}

.k-newsDetail__thanksContent {
  color: var(--blue);
  font-family: var(--font-zen-kaku-new-type);
  font-size: 24px;
  font-weight: 700;
  line-height: 160%;
  margin-bottom: 24px;
}

.k-newsDetail__info {
  background-color: var(--white);
  padding: 48px;
  margin-bottom: 68px;
  position: relative;
  border-radius: 10px;
}

.k-newsDetail__top {
  margin-bottom: 48px;
}

.k-newsDetail__date {
  color: var(--light-text-color);
  font-family: var(--font-rubik);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  margin-bottom: 16px;
}

.k-newsDetail__date .strong {
  font-size: 21px;
}

.k-newsDetail__title {
  color: var(--text-color);
  font-family: var(--font-zen-kaku-new-type);
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  margin-bottom: 48px;
}

.k-newsDetail__info_list {
  width: 456px;
}

.k-newsDetail__info_item {
  display: flex;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px dashed #D3CBB8;
}

.k-newsDetail__info_item:last-child {
  border-bottom: none;
}

.k-newsDetail__info_item-label {
  width: 20%;
  color: var(--blue);
  font-family: var(--font-zen-kaku-new-type);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  margin-right: 32px;
}

.k-newsDetail__info_item-value {
  color: var(--text-color);
  font-family: var(--font-zen-kaku-new-type);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
}
.k-newsDetail__info_img {
  position: absolute;
  top: -84px;
  right: 48px;
  width: 50%;
  height: 400px;
  object-fit: cover;
  border-radius: 15px;
}

.k-newsDetail__bottom {
  display: flex;
  align-items: center;
  background-color: var(--global-bg-color);
  padding: 16px;
  border-radius: 10px;
}

.k-newsDetail__bottom img {
  width: 280px;
  height: 172px;
  margin-right: 40px;
}

.k-newsDetail__comment {
  flex: 1;
  margin-right: 40px;
  /* max-width: 728px; */
}

.k-newsDetail__bottom p {
  color: var(--text-color);
  font-family: var(--font-zen-kaku-new-type);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 180%;
}

.k-newsDetail__backbutton {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 120px;
  color: var(--blue);
  font-family: var(--font-zen-kaku-new-type);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
}

.k-newsDetail__backbutton .circle-arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--blue);
  padding: 6px;
  margin-right: 8px;
}

.k-newsDetail__backbutton .circle-arrow img {
  width: 20px;
  height: 20px;
}

@media screen and (min-width: 768px) and (max-width: 1439px) {
  .k-news__item_top {

  }

  .k-news__item_top img {
    width: 100%;
    height: auto;
  }
}

@media screen and (max-width: 767px) {
  .k-news {
    padding: 32px 20px;
  }

  .k-news__content {
    font-size: 14px;
    margin-bottom: 32px;
  }

  .k-news__list {
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .k-news__item {
    width: 48%;
    padding: 8px;
    margin-bottom: 11px;
    margin-right: 0;
  }

  .k-news__item_top img {
    width: 100%;
    height: 134px;
  }

  .k-news__item_date {
    display: flex;
    align-items: center;
    width: 84px;
    height: 20px;
    font-size: 12px;
    padding: 4px;
    border-radius: 2px;
  }

  .k-news__item_date .strong {
    font-size: 16px;
  }

  .k-news__item_bottom {
    margin: 8px 0 12px 0;
    display: block;
    text-align: center;
  }

  .k-news__item_bottom .vertical-line {
    display: none;
  }

  .k-news__item_carMaker, .k-news__item_carName {
    font-size: 16px;
  }

  .k-news__item_carMaker {
    margin-bottom: 2px;
  }

  /* detail */
  .k-newsDetail__info_img {
    position: relative;
    top: 0;
    right: 0;
    width: 100%;
    height: 234px;
  }

  .k-newsDetail__thanksContent {
    font-size: 18px;
    text-align: center;
    margin: 16px 0 32px 0;
  }

  .k-newsDetail__top {
    margin-bottom: 32px;
  }

  .k-newsDetail__info {
    padding: 32px 20px;
    margin-bottom: 48px;
  }

  .k-newsDetail__info_list {
    width: 100%;
  }

  .k-newsDetail__date {
    font-size: 14px;
    margin-bottom: 8px;
  }

  .k-newsDetail__title {
    font-size: 32px;
    margin-bottom: 32px;
  }

  .k-newsDetail__info_item {
    margin-bottom: 16px;
  }

  .k-newsDetail__info_item-label {
    font-size: 14px;
  }

  .k-newsDetail__info_item-value {
    font-size: 16px;
  }

  .k-newsDetail__bottom {
    display: block;
  }

  .k-newsDetail__bottom img {
    width: 100%;
    height: 100px;
    margin-right: 0;
    margin-bottom: 16px;
  }

  .k-newsDetail__comment {
    margin-right: 0;
  }

  .k-newsDetail__bottom p {
    font-size: 16px;
  }

  .k-newsDetail__backbutton {
    margin-bottom: 80px;
  }
}