@charset "UTF-8";
/*------------------------------
お知らせ一覧ページ
------------------------------*/
@media (max-width: 767px) {
  #main_news {
    margin-top: 32px;
  }
}

.news-category {
  display: flex;
  flex-wrap: wrap;
  margin-top: 48px;
}
.news-category li {
  margin-right: 16px;
  margin-bottom: 15px;
}
.news-category li a {
  font-size: 1.4rem;
  font-weight: 900;
  line-height: 1.8;
  background: #fff;
  border-radius: 8px;
  padding: 4px 16px;
  color: #000;
}
.news-category li a.current {
  background: #CFFB2B;
}
@media (max-width: 767px) {
  .news-category {
    margin-top: 30px;
  }
  .news-category li {
    margin-right: 8px;
  }
  .news-category li a {
    font-size: 1.4rem;
    padding: 7px 16px;
  }
}

.news-list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 32px;
}
.news-list li {
  width: calc(33.3% - 16px);
  background: #fff;
  border-radius: 16px;
  padding: 2%;
  aspect-ratio: 351/395;
}
.news-list li p {
  font-size: 1.8rem;
  font-weight: 400;
  font-family: "Bungee", sans-serif;
  letter-spacing: 0.1em;
}
.news-list li h3 {
  font-size: 1.4rem;
  font-weight: 900;
  line-height: 1.6;
  margin: 1em 0 0.5em;
}
.news-list li span {
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 900;
  line-height: 1.8;
  background: #CFFB2B;
  text-align: center;
  padding: 2px 8px;
  border-radius: 8px;
}
.news-list a {
  color: #000;
}
@media (min-width: 768px) {
  .news-list li:not(:nth-child(3n)) {
    margin-right: 24px;
  }
  .news-list li:nth-child(n+4) {
    margin-top: 24px;
  }
  .news-list li:nth-child(n+16) {
    display: none;
  }
  .news-list li.active:nth-child(n+16) {
    display: block;
  }
}
@media (max-width: 767px) {
  .news-list {
    display: block;
    margin-top: 24px;
  }
  .news-list li {
    width: 100%;
    padding: 7%;
    aspect-ratio: 327/397;
  }
  .news-list li:nth-child(n+2) {
    margin-top: 24px;
  }
  .news-list li h3 {
    font-size: 1.4rem;
    margin: 0.6em 0 1.5em;
  }
  .news-list li span {
    font-size: 1.4rem;
  }
}

.news-item_thumb {
  margin-bottom: 20px;
}
.news-item_thumb img {
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 307/200;
  border-radius: 16px;
}
@media (max-width: 767px) {
  .news-item_thumb img {
    aspect-ratio: 280/200;
  }
}

.news-more {
  margin-top: 48px;
  text-align: center;
}
.news-more button {
  background: #fff;
  color: #000;
  border: 3px solid #000;
  cursor: pointer;
}
.news-more button::after {
  transform: translateY(-50%) rotate(90deg);
  background-color: #000;
}
@media (max-width: 767px) {
  .news-more {
    margin-top: 22px;
  }
  .news-more button {
    width: 264px;
  }
}

/*------------------------------
お知らせ記事ページ
------------------------------*/
.news-box {
  width: 856px;
  max-width: 100%;
  margin: 0 auto;
  background: #fff;
  border-radius: 16px;
  padding: 56px;
}
.news-box span {
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1.8;
  background: #CFFB2B;
  border-radius: 8px;
  padding: 2px 8px;
  color: #000;
}
.news-box span:nth-of-type(n+2) {
  margin-left: 0.5em;
}
.news-box .news-item_thumb img {
  aspect-ratio: 307/188;
}
@media (max-width: 767px) {
  .news-box {
    padding: 24px;
  }
}

.news-item_thumb {
  margin-bottom: 20px;
}

.news-date {
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.8;
  font-family: "Bungee", sans-serif;
  margin-bottom: 16px;
  letter-spacing: 0.1em;
}

.news-title {
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1.6;
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .news-title {
    font-size: 2rem;
  }
}

.news-content {
  margin-top: 32px;
}
.news-content h2 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.6;
  margin-top: 32px;
}
.news-content h3 {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.6;
  margin-top: 20px;
}
.news-content h4 {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.6;
  margin-top: 16px;
}
.news-content p {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.6;
  margin-top: 8px;
}
.news-content ul {
  margin-top: 4px;
}
.news-content ul li {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.6;
  list-style: inside;
  margin-left: 1em;
}
.news-content ol {
  margin-top: 4px;
}
.news-content ol li {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.6;
  list-style: auto;
  margin-left: 2em;
}
@media (max-width: 767px) {
  .news-content h2 {
    font-size: 1.8rem;
  }
  .news-content h3 {
    font-size: 1.6rem;
  }
  .news-content h4 {
    font-size: 1.4rem;
  }
  .news-content p {
    font-size: 1.4rem;
  }
}

.news-back {
  margin-top: 40px;
  text-align: center;
}
.news-back a {
  background: #fff;
  color: #000;
  border: 3px solid #000;
  cursor: pointer;
}
.news-back a::after {
  right: unset;
  left: 16px;
  transform: translateY(-50%) rotate(180deg);
  background-color: #000;
}

.wp-block-image {
  margin: 20px auto;
}
/*# sourceMappingURL=news.css.map */