@charset "UTF-8";
.lower {
  position: relative;
}
.lower::before {
  content: "";
  background: url(../../images/common/lower_bg.png) top left/contain no-repeat;
  width: 30vw;
  height: auto;
  aspect-ratio: 988/940;
  position: absolute;
  top: -40px;
  left: 0;
  z-index: -1;
}

.page_ttl {
  font-size: 4.07rem;
  font-family: "EB Garamond", serif;
  font-weight: 400;
}
@media (max-width: 767.98px) {
  .page_ttl {
    font-size: 3.07rem;
    line-height: 1.25;
  }
}

.breadcrumb li {
  line-height: 1.4;
}
.breadcrumb li:not(:last-child)::after {
  content: "＞";
  margin: 0 0.5em 0 0.75em;
}
.breadcrumb li a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.breadcrumb li a:hover {
  text-decoration: none;
}

.pagenation {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.pagenation li {
  line-height: 1;
}
.pagenation li a {
  color: inherit;
  font-family: "Jost", sans-serif;
  font-size: 1.28rem;
  font-weight: 400;
  width: 28px;
  height: 28px;
  display: grid;
  place-content: center;
  border: 1px solid;
  border-radius: 50%;
}
.pagenation li a.current, .pagenation li a:hover {
  background-color: #dcdddd;
}

.news_list {
  margin-bottom: 2rem;
}
.news_list li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
  line-height: 1.93;
}
.news_list li:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.25);
}
.news_list li a {
  color: inherit;
  display: block;
  padding: 20px 10px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.news_list li a::after {
  content: "";
  background-color: #fff100;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 90vw;
  transform: skewY(-10deg) scale(1, 0);
  transform-origin: left top;
  transition: 0.75s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: -1;
}
.news_list li a:hover {
  opacity: 1;
}
.news_list li a:hover::after {
  transform: skewY(-45deg) scale(1, 1);
}
.news_list li .list_head {
  font-family: "Jost", sans-serif;
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 1rem;
  line-height: 1.35;
}
.news_list li .list_head .category {
  color: #fff;
  background-color: #898989;
  width: 90px;
  text-align: center;
  border-radius: 100vmax;
}
.news_list li .list_ttl {
  font-size: 1.07rem;
  margin: 0;
}
@media (max-width: 767.98px) {
  .news_list li .list_ttl {
    font-size: 1em;
    line-height: 1.45;
  }
}

.article {
  border-top: 1px solid rgba(0, 0, 0, 0.25);
  padding-top: 1rem;
  margin: 2rem 0 5rem;
}
@media (max-width: 767.98px) {
  .article {
    margin: 2rem 0;
  }
}
.article .article_head {
  font-family: "Jost", sans-serif;
  font-size: 12px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1rem;
  line-height: 1.35;
  margin-bottom: 1rem;
}
.article .article_head .category {
  color: #fff;
  background-color: #898989;
  width: 90px;
  text-align: center;
  border-radius: 100vmax;
}
.article .article_ttl {
  font-family: "Noto Serif JP", serif;
  margin-bottom: 1em;
}
.article > p {
  font-weight: 400;
  line-height: 1.85;
}
.article a {
  color: #e8380d;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.article a:hover {
  text-decoration: none;
}

.back_link .link_btn {
  font-weight: 400;
  background-color: #efefef;
  color: inherit;
  border: 1px solid;
  border-radius: 100vmax;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 140px;
  height: 35px;
  margin: auto;
  padding-left: 12px;
  position: relative;
}
.back_link .link_btn::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-left: 1px solid;
  border-bottom: 1px solid;
  rotate: 45deg;
  position: absolute;
  top: 50%;
  left: 20px;
  translate: 0 -50%;
}