@charset "UTF-8";
/* CSS Document */
#news #content {
  width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 40px 0px 40px 0px;
}
#news #content .year {
  width: min(100% - 16px, 960px);
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  #news #content .year {
    width: 100%;
    padding: 0px 8px;
  }
}
#news #content #dataTable {
  width: min(100% - 16px, 960px);
}
@media screen and (max-width: 767px) {
  #news #content #dataTable {
    width: calc(100% - 16px);
    padding: 0px 8px;
  }
}
#news #content #dataTable thead {
  display: none;
}
#news #content #dataTable tr {
  display: grid;
  grid-template-rows: 40px 1fr;
  grid-template-columns: 380px 1fr;
  border-bottom: solid 2px #888888;
  /* padding:20px 20px; */
}
@media screen and (max-width: 767px) {
  #news #content #dataTable tr {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, auto);
  }
}
#news #content #dataTable tr td {
  padding: 20px;
}
@media screen and (max-width: 767px) {
  #news #content #dataTable tr td:nth-child(2),
  #news #content #dataTable tr td:nth-child(3) {
    padding: 10px 20px;
  }
}
@media screen and (max-width: 767px) {
  #news #content #dataTable tr td:nth-child(3) {
    margin-bottom: 20px;
  }
}
#news #content #dataTable tr:first-child {
  border-top: solid 2px #888888;
}
#news #content #dataTable tr:nth-child(odd) {
  background-color: #fbfbfb;
}
#news #content #dataTable tbody .visual-header {
  /* width: 380px; 見出しビジュアルの幅を設定 */
  grid-row: 1/3;
  grid-column: 1/2;
  border-right: solid 2px #c70010;
}
#news #content #dataTable tbody .visual-header img {
  filter: drop-shadow(4px 4px 6px rgba(8, 8, 8, 0.3));
}
@media screen and (max-width: 767px) {
  #news #content #dataTable tbody .visual-header {
    grid-column: 1/2;
    grid-row: 1/2;
    border-right: none;
  }
}
#news #content #dataTable tbody .visual-header .small-image {
  width: 300px;
  /* 画像の幅を設定 */
  max-width: 100%;
  /* 見出しビジュアル内での最大幅 */
  height: auto;
  /* 高さを自動調整 */
  display: block;
  /* 画像をブロック要素として扱う */
  margin: 0 auto;
  /* 中央揃え */
}
#news #content #dataTable tbody .date-header {
  /* width: 20%; 日付の幅を設定 */
  grid-column: 2/3;
  grid-row: 1/2;
}
@media screen and (max-width: 767px) {
  #news #content #dataTable tbody .date-header {
    grid-column: 1/2;
    grid-row: 2/3;
  }
}
#news #content #dataTable tbody .detail-header {
  /* width: 50%; 詳細の幅を設定 */
  grid-row: 2/3;
  grid-column: 2/3;
}
@media screen and (max-width: 767px) {
  #news #content #dataTable tbody .detail-header {
    grid-column: 1/2;
    grid-row: 3/4;
  }
}
#news #content #dataTable a {
  font-size: 10px;
  line-height: 30px;
  color: #00a23f;
  border: solid 1px #00a23f;
  padding: 0px 3px;
}
#news #yearLinkWrapper {
  display: flex;
  justify-content: center;
}
#news #yearLinkWrapper #yearLink {
  justify-content: center;
  width: 960px;
  margin-bottom: 40px;
  display: grid;
  grid-template-columns: repeat(10, auto);
  column-gap: 20px;
}
@media screen and (max-width: 767px) {
  #news #yearLinkWrapper #yearLink {
    width: 100%;
    grid-template-columns: repeat(5, auto);
  }
}
#news #yearLinkWrapper #yearLink p,
#news #yearLinkWrapper #yearLink a {
  margin-bottom: 10px;
}/*# sourceMappingURL=news.css.map */