@charset "utf-8";
/* トップ画面 */
.section-news-top {
  width: 100%;
  height: 100vh;
}
.container {
  position: relative;
  width: 100%;
  height: 100vh;
  
}
.news-img {
  position: absolute;
  width: 100%;
  height: 100vh;
}
.news-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% 50%;
}

/* コンテンツエリア */
.news-content {
  max-width: 1980px;
  padding: 80px 20px 100px;
  margin: 0 auto;
  color: #011b72;
}
.news-title {
  display: inline-block;
  margin-bottom: 60px;
}
.news-items {
  width: 100%;
  margin: 0 auto;
  padding:50px 0 50px;
  border-bottom: solid #011b72 1px;
}
.news-items-NEW {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
  padding-left: 10px;
}
.blink {
	animation: blinking 2.3s ease-out 3s infinite alternate;
}
@keyframes blinking {
	0% {opacity: 0;}
	100% {opacity: 1;}
}
.news-items-img-title {
  font-size: 10px;
  text-align: right;
}

.news-items-text-cotainer {
  width: 90%;
  margin: 0 auto;
}
.news-items-title {
  font-size: 16px;
  margin-bottom: 30px;
  margin-top: 40px;
}
.news-items-description-1 {
  margin-bottom: 0px;
}
.news-items-description-2 {
  margin-bottom: 0px;
  margin-top: 15px;
}
.news-items-description {
  margin-bottom: 30px;
  margin-top: 30px;
}
.news-items-description-link {
  display: block;
  word-break: break-all;
  width: 100%;
}
.link-icon {
  display: inline-block;
  margin-left: 4px;
  width: 10px;
}
.link-icon img {
  width: 100%;
}
    




@media only screen and (min-width: 900px) { 
  /* トップ画面 */
  .section-news-top {
    display: none;
  }
    
  /* コンテンツエリア */
  .news-content {
    padding: 80px 10% 160px 23%;
  }
}