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

  お知らせ

---------------------------------*/
.newsBlock {}
.newsBlock .title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: auto;
  margin-bottom: 3rem;
}
.newsBlock .title h2 {
  background: none;
  border: 0;
  margin: 0;
}
.newsBlock .title .tabList {}
.newsBlock .title .tabList ul {
  display: flex;
  gap: .5rem;
  list-style: none;
}
.newsBlock .title .tabList ul li {}
.newsBlock .title .tabList ul li a {
  color: #4d4d4d;
  border-radius: 5rem;
  display: block;
  font-weight: 600;
  padding: .2rem 2rem;
  transition: none;
}
.newsBlock .title .tabList ul li a:hover, .newsBlock .title .tabList ul li.current a {
  background: var(--grd-gb);
  color: #fff;
}
.newsBlock {}
.newsBlock .letterList {
  border-top: 1px solid #b3b3b3;
  list-style: none;
}
.newsBlock .letterList li {
  border-bottom: 1px solid #b3b3b3;
}
.newsBlock .letterList li {}
.newsBlock .letterList li a {
  color: var(--base-col);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  padding: 2.5rem 2rem;
}
.newsBlock .letterList li time {
  color: #808080;
  display: inline-block;
}
.newsBlock .letterList li a .ctag {
  background: #ccc;
  border-radius: 2rem;
  color: #fff;
  font-size: .7em;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: .1rem 1.5rem;
}
.newsBlock .letterList li a .ctag.news {
  background: #0092d8;
}
.newsBlock .letterList li a .ctag.event {
  background: #16b39b;
}
.newsBlock .letterList li a .ctag.child {
  background: #df644e;
}
.newsBlock .letterList li p {
  flex-basis: 100%;
  font-weight: 500;
  text-align: justify;
  transition: all .1s;
}
.newsBlock .letterList li a:hover {
  background: #fff;
  color: var(--co-main);
}
.newsBlock .letterList li a:hover p {
  text-decoration: underline;
}
@media screen and (max-width: 1024px) {}
@media screen and (max-width: 896px) {
  .newsBlock .title {
    display: block;
  }
}
@media screen and (max-width: 480px) {
  .newsBlock .title .tabList ul li {
    font-size: 0.75em;
    margin-left: 1rem;
  }
  .newsBlock .letterList li a {
    display: block;
    padding: 2rem 0;
  }
  .newsBlock .letterList li a p {
    margin: 1rem 0 0;
  }
}
/*---------------------------------

  詳細ページ

---------------------------------*/
.detailBlock {}
.detailBlock .title .data {
  display: block;
  margin: -3rem 0 3rem;
  text-align: right;
}
.detailBlock .btn {
  margin: 5rem auto 0;
}
@media screen and (max-width: 1024px) {}
@media screen and (max-width: 896px) {}
@media screen and (max-width: 480px) {}