@charset "UTF-8";
/* CSS Document */

.news-box {
    width: 90%;
    margin: 50px auto 50px;
    display: block;
}

/* 横並び3件のボックス */
#feed {
    display: flex;
    justify-content: flex-start;
    gap: 5%;
}

/* 各記事カード */
.news-item {
    width: 30%;
    border: 1px solid #1d4294;
    background: #fff;
    padding: 20px;
    box-sizing: border-box;
    text-align: left;
    transition: 0.2s;
}
.news-item:hover {
    background-color: #FFF2D1;
    transition: 0.2s;
}

/* アイキャッチ画像 */
.news-item img {
    width: 100%;
    margin-bottom: 20px;
}

/* カテゴリー 
.news-cat {
    display: inline-block;
    background:#c50018;
    color: #fff;
    padding: 8px 10px 6px;
    margin-bottom: 15px;
    font-family: "Noto Sans JP", sans-serif;
	font-optical-sizing: auto;
	font-weight: 500;
	font-style: normal;
    font-size: 14px;
    line-height: 1em;
}*/

/* 日付 */
.news-date {
    font-family: "Noto Sans JP", sans-serif;
	font-optical-sizing: auto;
	font-weight: 600;
	font-style: normal;
    font-size: 14px;
    line-height: 1.2em;
    color: #000;
    margin-bottom: 5px;
}
/* タイトル */
.news-title {
    font-family: "Noto Sans JP", sans-serif;
	font-optical-sizing: auto;
	font-weight: 600;
	font-style: normal;
    font-size: 16px;
    line-height: 1.4em;
    margin-bottom: 10px;
    color: #00B2FF;
}
/* 本文 */
.news-excerpt {
    font-family: "Noto Sans JP", sans-serif;
	font-optical-sizing: auto;
	font-weight: 600;
	font-style: normal;
    font-size: 14px;
    line-height: 1.6em;
    text-align: justify;
    text-align: justify-all;
    padding: 0;
    margin: 0;
}
/* アイキャッチ画像表示エリア */
.news-item .thumb {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #fff;
    overflow: hidden;
    margin-bottom: 20px;
    position: relative;
}

.news-item .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
@media screen and (max-width: 899px) {
  .news-box #feed {
      display: grid;
      grid-template-columns: repeat(2, 1fr); /* 2列 */
      column-gap: 3%;   /* 列の間 */
      row-gap: 25px;    /* 行の間 */
  }

  .news-box .news-item {
      width: 100%;
      margin: 0;
      padding: 10px;
      float: none;
      display: block;
  }
/* アイキャッチ画像*/
.news-item img {
    margin-bottom: 10px;
}
.news-item .thumb {
    margin-bottom: 10px;
}

/* 日付 */
.news-date {
    font-size: 13px;
    margin-bottom: 5px;
}
/* タイトル */
.news-title {
    font-size: 15px;
    line-height: 1.4em;
    margin-bottom: 10px;
}
/* 本文 */
.news-excerpt {
    font-size: 11px;
    line-height: 1.6em;
    padding: 0;
    margin: 0;
}
}