.news .listBox {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-left: 1px;
  --itemMargin: 20px;
}
@media screen and (min-width: 1400px) {
  .news .listBox {
    --itemMargin: 33px;
  }
}
@media screen and (max-width: 1000px) {
  .news .listBox {
    --itemMargin: 15px;
  }
}
.news .item {
  width: 33.3333333333%;
  padding-bottom: 4%;
  margin: 0 0 -1px -1px;
  position: relative;
  border: #dedede 1px solid;
  background: #fff;
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  .news .item {
  width:50%;
  }
}
@media screen and (max-width: 550px) {
  .news .item {
  width:100%;
  }
}
.news .item:nth-child(1) {
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s;
}
.news .item:nth-child(2) {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
.news .item:nth-child(3) {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
.news .item:nth-child(4) {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}
.news .item:nth-child(5) {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
.news .item:nth-child(6) {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}
.news .item:nth-child(7) {
  -webkit-animation-delay: 0.7s;
          animation-delay: 0.7s;
}
.news .item:nth-child(8) {
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}
.news .item:nth-child(9) {
  -webkit-animation-delay: 0.9s;
          animation-delay: 0.9s;
}
.news .item .picBox {
  padding: 9% 12% 5%;
}
.news .item .picBox .pic {
  display: block;
  background: radial-gradient(ellipse at center, rgb(255, 255, 255) 0%, rgb(246, 246, 246) 100%);
  transition: all 0.3s ease;
}
.news .item .picBox .pic img {
  width: 100%;
  aspect-ratio: 58/34;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
.news .item .txtBox {
  padding: 0 12%;
}
.news .item .txtBox .title {
  max-height: 90px;
  font-size: 1.5rem;
  font-weight: 500;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 1.2;
  margin-bottom: 5%;
}
@media screen and (max-width: 1000px) {
  .news .item .txtBox .title {
    font-size: 1.25rem;
  }
}
.news .item .txtBox .txt {
  line-height: 1.45;
  margin-bottom: 5%;
  font-weight: 300;
  color: #666666;
  font-size: 1.125rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}
.news .item .txtBox .date {
  font-size: 0.9375rem;
  color: #f80c06;
}
.news .item .txtBox .date span {
  margin-left: 10px;
}
.news .item:hover {
  border-color: #f90d08;
  z-index: 9;
}
.news .item:hover .pic {
  box-shadow: 0 0 15px 0px rgba(0, 0, 0, 0.1);
}

.newsDetailBox .newsDetail {
  z-index: 70;
  position: relative;
}
.newsDetailBox .newsDetail ul{
	padding:0 1.5em;
	list-style-type: disc;
}
.newsDetailBox .pageTitle {
  margin-bottom: -167px;
}
@media screen and (max-width: 767px) {
  .newsDetailBox .pageTitle {
    margin-bottom: 0px;
  }
}
.newsDetailBox .pageTitle .container {
  min-height: 100px;
  padding-bottom: 200px;
}
@media screen and (max-width: 767px) {
  .newsDetailBox .pageTitle .container {
    min-height: 0;
    padding-bottom: 0;
  }
}
.newsDetailBox .pageTitle .date {
  color: #f90d08;
  font-size: 0.9375rem;
}
.newsDetailBox .pageTitle .date::before {
  content: "DATE:";
  margin-right:10px;
  font-weight: 700;
}
.newsDetailBox .pageTitle .date span{
  margin-left:10px;
}
.newsDetailBox .topBox {
  position: relative;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .newsDetailBox .topBox {
    margin-bottom: 20px;
  }
}
.newsDetailBox .topBox::before {
  content: "";
  height: 1px;
  width: 100%;
  top: calc(40% + 30px);
  background: #dadada;
  position: absolute;
  display: block;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .newsDetailBox .topBox::before {
    top: calc(40% + 15px);
  }
}
.newsDetailBox .picBox {
  max-width: 700px;
  padding: 0 60px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .newsDetailBox .picBox {
    padding: 0 30px;
  }
}
.newsDetailBox .picBox::before {
  content: "";
  position: absolute;
  display: block;
  top: 40%;
  left: 30px;
  right: 30px;
  bottom: -30px;
  background: linear-gradient(to bottom, rgb(255, 255, 255) 0%, rgb(235, 235, 235) 100%);
}
@media screen and (max-width: 767px) {
  .newsDetailBox .picBox::before {
    display: none;
  }
}
.newsDetailBox .picBox .listBox {
  max-width: 580px;
  margin: 0 auto;
}
.newsDetailBox .picBox .listBox .item {
  line-height: 0;
}
.newsDetailBox .picBox .listBox .item img {
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 29/17;
}
.newsDetailBox .picBox .slick-arrow {
  position: absolute;
  width: 60px;
  display: block;
  aspect-ratio: 1/1;
  border: #dadada 1px solid;
  background: #fff;
  top: 40%;
}
@media screen and (max-width: 767px) {
  .newsDetailBox .picBox .slick-arrow {
    width: 30px;
  }
}
.newsDetailBox .picBox .slick-arrow::before {
  content: "";
  width: 30px;
  aspect-ratio: 3/2;
  display: block;
  -webkit-mask: url("../images/gotop.svg");
          mask: url("../images/gotop.svg");
  background: #dadada;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}
@media screen and (max-width: 767px) {
  .newsDetailBox .picBox .slick-arrow::before {
    width: 15px;
  }
}
.newsDetailBox .picBox .slick-arrow.slick-prev {
  left: 0;
}
.newsDetailBox .picBox .slick-arrow.slick-prev::before {
  transform: translateX(-50%) translateY(-50%) rotate(-90deg);
}
.newsDetailBox .picBox .slick-arrow.slick-next {
  right: 0;
}
.newsDetailBox .picBox .slick-arrow.slick-next::before {
  transform: translateX(-50%) translateY(-50%) rotate(90deg);
}
.newsDetailBox .txtBox {
  padding: 0 3%;
  color: #666666;
  font-size: 1.25rem;
}
@media screen and (max-width: 1000px) {
  .newsDetailBox .txtBox {
    font-size: 1rem;
  }
}/*# sourceMappingURL=news.css.map */