.section-news {
  margin-top: 20px;
}

.com-main-title {
  font-size: 24px;
  font-weight: bold;
  border-left: 12px solid #9b4633;
  padding-left: 18px;
}

@media screen and (max-width: 599px) {
  .com-main-title {
    font-size: 14px;
  }
}

/* swiper
*************************************************/
.swiper-custom-parent {
  margin: 12px 12px 0;
  position: relative;
}

.swiper-container .swiper-slide {
  left: 1px;
  display: flex;
  justify-content: center;
}

@media screen and (max-width: 599px) {
  .swiper-custom-parent {
    margin-top: 8px;
  }

  .swiper-container .swiper-slide {
    left: 0;
  }
}

/* news-swiper
*************************************************/
.news-swiper-box {
  flex-direction: column;
  padding: 16px;
  margin: 8px;
  box-shadow: 0 0 8px rgb(0 0 0 / 25%);
  border-radius: 6px;
  width: 100%;
  background-color: #fff;
}

.news-swiper-title {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 17px;
  font-weight: bold;
  margin-bottom: 12px;
}

.news-swiper-title img {
  height: 30px;
  width: auto;
  margin-right: 8px;
}

.news-swiper-title p {
  padding-bottom: 5px;
}

.news-list-item a {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 12px 0;
  border: none;
  width: auto;
  border-radius: 0;
  color: #000;
  text-decoration: none;
  overflow: hidden;
}

.news-list-item img {
  width: 80px;
  height: 60px;
  object-fit: contain;
  background-color: #000;
}

.news-list-item p {
  margin-left: 8px;
  font-size: 14px;
  font-weight: bold;
}

.news-list-item+.news-list-item {
  border-top: 1px dashed #ccc;
}

.news-swiper-link {
  border-radius: 8px;
  border: 3px solid #eeeeee;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #9b4633;
  color: #fff;
  font-weight: bold;
  transition: color 0.2s;
  text-decoration: none;
  font-size: 16px;
  position: relative;
  padding: 4px;
  width: 200px;
  margin: auto;
  margin-top: 12px;
}

.news-swiper-link::before {
  position: absolute;
  content: "";
  background: url(/_img/service/next-arrow.png) no-repeat;
  background-size: contain;
  width: 13px;
  height: 14px;
  top: 9px;
  left: 10px;
}

@media screen and (max-width: 599px) {
  .news-swiper .news-swiper-box {
    margin: 8px 0;
  }

  .swiper-slide a {
    height: auto;
  }

  .news-list-item img {
    width: 100px;
    height: 75px;
  }
}

/* swiper-button
*************************************************/
.swiper-button-prev {
  left: -12px;
}

.swiper-button-next {
  right: -12px;
}

.swiper-button-next,
.swiper-button-prev {
  background: #000;
  width: 36px;
  height: 36px;
  border-radius: 50%;
}

.swiper-button-next::before,
.swiper-button-prev::before {
  position: absolute;
  content: "";
  background: url(/_img/service/next-arrow.png) no-repeat;
  background-size: contain;
  width: 13px;
  height: 21px;
  top: 9px;
  left: 10px;
}

.swiper-button-prev::before {
  background: url(/_img/service/prev-arrow.png) no-repeat;

}

.swiper-button-next::before {
  top: 9px;
  left: 12px;
}

@media screen and (max-width: 599px) {
  .swiper-button-prev {
    top: -23px;
    right: 56px;
    left: auto;
  }

  .swiper-button-next {
    right: 0;
    top: -23px;
  }
}