@charset "UTF-8";
/*||| お知らせページ |||*/
.newsArea.index .newsList .summary {
  margin-top: 1em;
}
.newsArea:not(.index) .section.inner .summary {
  margin-top: 2em;
}
.newsArea:not(.index) .articleData {
  display: grid;
  gap: 0 1em;
}
@media screen and (min-width: 769px) {
  .newsArea:not(.index) .articleData {
    grid-template-columns: 1fr auto auto;
  }
}
@media screen and (max-width: 768px) {
  .newsArea:not(.index) .articleData {
    grid-template-columns: 1fr auto;
    gap: 2px;
  }
}
@media screen and (max-width: 768px) {
  .newsArea:not(.index) .articleData [data-news-category] {
    grid-row: 1/3;
  }
}
@media screen and (max-width: 768px) {
  .newsArea:not(.index) .articleData .date2 {
    grid-column: 2;
  }
}
.newsArea .summary {
  position: relative;
  margin-top: 1em;
  padding: 0.5em 1em;
  border-radius: 0.5em;
  background-color: #fff;
  border: 2px solid #eee;
  color: #777;
}
.newsArea .summary::before {
  position: absolute;
  top: -1em;
  left: 0.5em;
  display: block;
  padding: 0 1em;
  background-color: #fff;
  font-size: 0.8em;
  color: #aaa;
  content: attr(title);
}
/*mainTextArea内*/
.newsArea .mainTextArea:has(img) table{
  max-width: 100%;
}
@media screen and (max-width: 768px) {
  .mainTextArea:has(img) table td{
    display: block;
    width: 100%;
  }
}