.news-content {
  padding-top: 16px;
}

.about-img {
  margin: 4px 0 48px;
}

.about-flex {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.about-flex .right-box {
  width: 526px;
  margin-left: 48px;
}

.about-flex .right-box .midashi {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}

.about-flex .right-box .about-desc {
  font-size: 14px;
  font-weight: 500;
}

.about-flex .right-box .about-desc .bold {
  font-weight: bold;
}

.strong-box {
  width: 100%;
  height: 375px;
  border: 1px solid #CED4D7;
  box-sizing: border-box;
  padding: 56px 0;
  margin-bottom: 80px;
}

.strong-box h4 {
  font-size: 21px;
  font-weight: bold;
  text-align: center;
  margin: 0;
  margin-bottom: 32px;
}

.strong-box .strong-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}

.strong-box .strong-flex .box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 204px;
  flex-direction: column;
}

.strong-box .strong-flex .box .num {
  font-size: 16px;
  font-weight: bold;
  color: #009FE6;
  margin: 0;
}

.strong-box .strong-flex .box img {
  display: block;
}

.strong-box .strong-flex .box .strong-desc {
  font-size: 14px;
  text-align: center;
  font-weight: 500;
  margin: 0;
}

.strong-box .strong-flex .box .strong-desc .bold {
  font-weight: bold;
}

@media screen and (max-width: 1200px) {    
  .about-flex .right-box {
    width: 50%;
    margin-left: 40px;
  }
  
  .about-flex .right-box .midashi {
    font-size: 16px;
  }
  
  .about-flex .right-box .about-desc {
    font-size: 12px;
  }
  
  .strong-box {
    height: unset;
    padding: 24px 0;
  }
  
  .strong-box h4 {
    font-size: 18px;
    margin-bottom: 24px;
  }
    
  .strong-box .strong-flex .box {
    width: 49%;
    margin-bottom: 24px;
  }

  .strong-box .strong-flex .box:nth-child(3),
  .strong-box .strong-flex .box:nth-child(4) {
    margin-bottom: 0;
  }
}

@media screen and (max-width: 768px) {
  .about-img {
    margin: 4px 0 32px;
  }
  
  .about-flex {
    margin-bottom: 32px;
  }
  
  .about-flex .right-box {
    width: 100%;
    margin-left: 0;
    margin-top: 16px;
  }

  .strong-box {
    margin-bottom: 64px;
  }
              
  .strong-box .strong-flex .box {
    width: 100%;
  }

  .strong-box .strong-flex .box:nth-child(3) {
    margin-bottom: 24px;
  }
}

.situation {
  margin-bottom: 50px;
}

.situation ul {
  list-style: none;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
}

.situation ul li {
  margin-bottom: 30px;
  width: calc(100% / 3 - 10px);
  margin-right: 15px;
}

.situation ul li:nth-child(3n) {
  margin-right: 0;
}

.situation ul li .img-wrap {
  display: block;
  margin-bottom: 12px;
}

.situation ul li .img-wrap img {
  display: block;
  transition: .3s ease-in;
}

.situation ul li .text-wrap a {
  display: block;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
}

@media screen and (max-width: 500px) {
  .situation {
    margin-bottom: 34px;
  }
    
  .situation ul li {
    margin-bottom: 20px;
    width: calc(100% / 2 - 6px);
    margin-right: 12px;
  }
  
  .situation ul li:nth-child(3n) {
    margin-right: 12px;
  }

  .situation ul li:nth-child(even) {
    margin-right: 0;
  }
  
  .situation ul li .img-wrap {
    margin-bottom: 8px;
  }
    
  .situation ul li .text-wrap a {
    font-size: 14px;
  }  
}

.cssSlider {
	width: 100%;
	overflow: hidden;
}

.cssSlider-track {
	display: flex;
	width: max-content;
	will-change: transform;
	animation: slider-scroll 20s linear infinite;
}

.cssSlider:hover .cssSlider-track {
	animation-play-state: paused;
}

.cssSlider-img {
	flex-shrink: 0;
	display: flex;
}

.cssSlider-img>ul {
	display: flex;
	gap: 16px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.cssSlider-img li {
	flex-shrink: 0;
	width: 20vw;
}

.cssSlider-img img {
	width: 100%;
	height: auto;
	display: block;
}

@keyframes slider-scroll {
	from {
		transform: translate3d(0, 0, 0);
	}

	to {
		transform: translate3d(-50%, 0, 0);
	}
}

.cssSlider-img._scroll {
	animation: none !important;
}
@media screen and (max-width: 770px) {
	.cssSlider-img li {
		width: 50vw;
	}
}