@charset "UTF-8";
/* topic
------------------------------------ */
.newscontainer {
  max-width: 1000px;
  margin: 0 auto;
}
.newscontainer > section hgroup {
  position: relative;
  margin: 0 auto 3rem;
  text-align: center;
  font-size: 2.4rem;
  width: fit-content;
  padding-bottom: 1rem;
  border-bottom: 1px dashed #B1AC9B;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
}
.newscontainer > section hgroup .date {
  font-size: 1.8rem;
}
.newscontainer > section hgroup:after {
  content: "";
  width: 2px;
  height: 3rem;
  top: 100%;
  left: calc(50% - 1px);
  border-left: 1px dashed #B1AC9B;
  display: block;
  position: absolute;
}
.newscontainer .body {
  background: #ECF6F8;
  border-radius: 15px;
  padding: 3rem;
  margin-bottom: 5rem;
}
.newscontainer .body::after {
  content: "";
  clear: both;
  display: block;
}
.newscontainer .body div.alignright,
.newscontainer .body img.alignright,
.newscontainer .body a.alignright {
  float: right;
  margin: 0 0 20px 20px;
}
.newscontainer .body div.alignleft,
.newscontainer .body img.alignleft,
.newscontainer .body a.alignleft {
  float: left;
  margin: 0 20px 20px 0;
}
.newscontainer .body div.aligncenter,
.newscontainer .body img.aligncenter,
.newscontainer .body a.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
  padding: 20px 0 0;
}
.newscontainer .body h1,
.newscontainer .body h2,
.newscontainer .body h3,
.newscontainer .body h4,
.newscontainer .body h5,
.newscontainer .body h6 {
  font-weight: 700;
  margin: 2em 0 1em;
}
.newscontainer .body h1 {
  font-size: 2.4rem;
}
.newscontainer .body h2 {
  font-size: 2.2rem;
}
.newscontainer .body h3 {
  font-size: 2rem;
}
.newscontainer .body h4 {
  font-size: 1.9rem;
}
.newscontainer .body h5 {
  font-size: 1.8rem;
}
.newscontainer .body h6 {
  font-size: 1.7rem;
}
.newscontainer .body a {
  text-decoration: underline;
}
.newscontainer .body p + * {
  margin-top: 2em;
}
.newscontainer .body p::before {
  content: "";
  clear: both;
  display: block;
}
.newscontainer .body ul {
  margin-bottom: 2em;
}
.newscontainer .body ul li {
  padding-left: 1em;
  position: relative;
}
.newscontainer .body ul li::before {
  content: "・";
  position: absolute;
  left: 0;
}
.newscontainer .body ol {
  margin-bottom: 2em;
  counter-reset: number;
}
.newscontainer .body ol li {
  padding-left: 1.5em;
  position: relative;
}
.newscontainer .body ol li::before {
  position: absolute;
  left: 0;
  counter-increment: number;
  content: counter(number) ".";
}
@media screen and (max-width: 768px) {
  .newscontainer > section hgroup {
    font-size: 2rem;
  }
  .newscontainer .body {
    padding: 2rem 2rem;
  }
}

.pager ul {
  display: flex;
  justify-content: center;
  gap: 1rem;
  font-family: "Baloo 2", sans-serif;
  font-size: 2.4rem;
}
.pager ul li {
  aspect-ratio: 1;
}
.pager ul li a,
.pager ul li span {
  display: inline-block;
  width: 4.5rem;
  height: 4.5rem;
  text-align: center;
  line-height: 4.5rem;
  border-radius: 50%;
  background: #FFD012;
  color: #fff;
}
.pager ul li a.current,
.pager ul li span.current {
  background: #A5B2BE;
}
.pager ul li a:hover {
  background: #E46062;
}