@charset "UTF-8";
/*tableリセット*/
table {
  border-collapse: collapse; /* 枠線を1本に */
  border-spacing: 0; /* セルの隙間を0に */
}
table th,
table td {
  padding: 0; /* 内側の余白をリセット */
  border: none; /* 枠線を非表示（必要に応じて） */
}
.news_section {
  display: grid;
  row-gap: 15px;
}
.news {
  padding: 30px 0 45px;
  border-bottom: #ccc solid 1px;
}
.news_image {
  margin-bottom: 20px;
}
.news_txt {
  margin-bottom: 20px;
  line-height: 1.7;
}
.news_meta {
  margin: 0 0 10px 0;
  display: flex;
  align-items: center;
}
.news_pict {
  padding: 5px 10px;
  text-align: center;
  border: 1px solid #cccccc;
  margin: 0 10px 0 0;
  font-size: 1rem;
}
.news_heading {
  font-size: 1.8rem;
  margin: 0 0 20px 0;
}
.news_table {
  margin: 20px auto 10px;
  font-size: 1.4rem;
}
.news_table table {
  width: 100%;
}
.news_table tr:nth-child(1),
.news_table tr:nth-child(2) {
  border-left: 1px solid #ccc;
  border-top: 1px solid #ccc;
  background-color: #efefef;
}
.news_table tr:nth-child(n + 3) {
  border-left: 1px solid #ccc;
  background-color: #ffffff;
}
.news_table td {
  border-bottom: 1px solid #ccc;
  border-right: 1px solid #ccc;
  padding: 7px 4px;
  text-align: center;
  vertical-align: middle;
}
.news_box a {
  text-decoration: underline;
}
.news_box a:hover {
  text-decoration: none;
}
/*タブレット*/
@media screen and (min-width: 768px) {
  .news_box_column {
    display: grid;
    grid-template-columns: 32% 1fr;
    column-gap: 32px;
  }
  .news_meta {
    margin: 0 0 20px 0;
  }
  .news_table table {
    width: 90%;
  }
}
/*タブレット(横)*/
@media screen and (min-width: 1024px) {
  .news_table table {
    width: 70%;
  }
}
