@charset "UTF-8";
@-webkit-keyframes slideIn {
  from {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes slideIn {
  from {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.split-text,
.split-text-hover,
.split-hover,
.split-target {
  display: inline-block;
  overflow: hidden;
  /* 文字が下から出てくる際に見切れるのを防ぐ */
}

.split-text .char,
.split-text-hover .char,
.split-hover .char,
.split-target .char {
  display: inline-block;
  opacity: 0;
  -webkit-transform: translateY(1em);
          transform: translateY(1em);
  /* 下から */
  will-change: transform, opacity;
}

.fade-up {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  will-change: opacity, transform;
}

.delay-1 {
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}

.delay-2 {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

.delay-3 {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

.delay-4 {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}

.delay-5 {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

.fade-up-connected {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  will-change: transform, opacity;
}

.fade-mask {
  position: relative;
  overflow: hidden;
}

.fade-mask .fade-mask-img,
.fade-mask .fade-mask-content,
.fade-mask {
  width: 100%;
  display: block;
  opacity: 0;
  mask-image: url("../images/common/mask-grad.webp");
  -webkit-mask-image: url("../images/common/mask-grad.webp");
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-size: auto 200%;
  -webkit-mask-size: auto 200%;
  mask-position: left bottom;
  -webkit-mask-position: left bottom;
}

/* is-visible が付いたら発火 */
.fade-mask.is-visible .fade-mask-img,
.fade-mask.is-visible .fade-mask-content,
.fade-mask.is-visible {
  -webkit-animation: mask-animation 3s cubic-bezier(0.115, 0.405, 0.24, 1) forwards;
          animation: mask-animation 3s cubic-bezier(0.115, 0.405, 0.24, 1) forwards;
}

@-webkit-keyframes mask-animation {
  0% {
    mask-position: left bottom;
    -webkit-mask-position: left bottom;
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  100% {
    mask-position: left 0%;
    -webkit-mask-position: left 0%;
    mask-size: auto 500%;
    -webkit-mask-size: auto 500%;
    opacity: 1;
  }
}

@keyframes mask-animation {
  0% {
    mask-position: left bottom;
    -webkit-mask-position: left bottom;
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  100% {
    mask-position: left 0%;
    -webkit-mask-position: left 0%;
    mask-size: auto 500%;
    -webkit-mask-size: auto 500%;
    opacity: 1;
  }
}
.p_news__header {
  position: relative;
  z-index: 1;
}
.p_news__news {
  padding-block: 3.75rem 6.375rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p_news__news {
    padding-block: 3.5rem 3.875rem;
  }
}
.p_news__news .news {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 5rem;
  max-width: 60rem;
}
@media screen and (max-width: 1040px) {
  .p_news__news .news {
    gap: 2.5rem;
  }
}
@media screen and (max-width: 768px) {
  .p_news__news .news {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 1.875rem;
    width: 100%;
  }
}
.p_news__news .news .cat-title__sort {
  font-family: YakuHanMP, "Noto Serif JP", serif;
  font-weight: 400;
  margin-block: 0.375rem 2.5rem;
}
@media screen and (max-width: 768px) {
  .p_news__news .news .cat-title__sort {
    margin-block: 0 1.25rem;
  }
}
.p_news__news .news .cat-title__sort__title {
  font-size: 0.8125rem;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .p_news__news .news .cat-title__sort__title {
    letter-spacing: 0.07em;
  }
}
.p_news__news .news .cat-title__sort__title::after {
  content: "";
  display: inline-block;
  width: 0.75rem;
  height: 1px;
  background: #665D5A;
  margin-inline: 0.375rem 0.125rem;
  vertical-align: middle;
  margin-bottom: 0.125rem;
}
.p_news__news .news .cat-title__sort__item {
  font-size: 0.8125rem;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .p_news__news .news .cat-title__sort__item {
    letter-spacing: 0.07em;
  }
}
.p_news__news .news__select {
  padding-block: 1.875rem 4.375rem;
  width: 100%;
  max-width: 11.25rem;
}
@media screen and (max-width: 768px) {
  .p_news__news .news__select {
    padding-block: 0rem;
    max-width: 15rem;
    margin-inline: auto;
  }
}
.p_news__news .news__select__inner select.styled {
  outline: none;
  display: block;
  width: 100%;
}
.p_news__news .news__select__inner select.styled + select.styled {
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .p_news__news .news__select__inner select.styled + select.styled {
    margin-top: 1rem;
  }
}
.p_news__news .news__body {
  width: 100%;
  max-width: 40rem;
  padding-block: 0rem 5.75rem;
}
@media screen and (max-width: 768px) {
  .p_news__news .news__body {
    padding-block: 0rem 3.125rem;
  }
}
.p_news__news .news__body .news-post {
  padding: 1.875rem 1.25rem;
  border-bottom: solid 1px rgba(46, 25, 17, 0.1);
}
@media screen and (max-width: 768px) {
  .p_news__news .news__body .news-post {
    padding: 2.5rem 0rem;
  }
}
.p_news__news .news__body .news-post__date {
  display: inline-block;
}
.p_news__news .news__body .news-post__date time {
  color: #665D5A;
  font-family: "Bellefair", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .p_news__news .news__body .news-post__date time {
    font-size: 0.9375rem;
    letter-spacing: 0.07em;
  }
}
.p_news__news .news__body .news-post__date .cat {
  color: #1698BB;
  border: solid 1px #1698BB;
  padding: 0.25rem 0.625rem;
  display: inline-block;
  margin-left: 0.625rem;
}
@media screen and (max-width: 768px) {
  .p_news__news .news__body .news-post__date .cat {
    padding: 0.25rem 0.5rem;
    margin-left: 0.375rem;
  }
}
.p_news__news .news__body .news-post__date .cat .tx {
  font-family: YakuHanMP, "Noto Serif JP", serif;
  font-weight: 200;
  line-height: 1;
  font-size: 0.8125rem;
  display: block;
}
@media screen and (max-width: 768px) {
  .p_news__news .news__body .news-post__date .cat .tx {
    letter-spacing: 0.07em;
  }
}
.p_news__news .news__body .news-post__title {
  font-family: YakuHanMP, "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.6;
  margin-top: 1rem;
  text-align: justify;
}
@media screen and (max-width: 768px) {
  .p_news__news .news__body .news-post__title {
    font-family: YakuHanMP, "Noto Serif JP", serif;
    font-weight: 600;
    letter-spacing: 0.07em;
    margin-top: 0.75rem;
  }
}
.p_news__news .news__body .news-post__content {
  font-family: YakuHanMP, "Noto Serif JP", serif;
  font-weight: 200;
  font-size: 0.8125rem;
  line-height: 1.8;
  margin-top: 0.625rem;
  text-align: justify;
}
@media screen and (max-width: 768px) {
  .p_news__news .news__body .news-post__content {
    font-size: 0.875rem;
    letter-spacing: 0.07em;
    margin-top: 0.5rem;
  }
}
.p_news__news .news__body .news-post .pdf {
  font-family: "Bellefair", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 0.875rem;
  margin-top: 0.625rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-bottom: solid 1px #665D5A;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .p_news__news .news__body .news-post .pdf {
    letter-spacing: 0.05em;
  }
}
.p_news__news .news__body .news-post .exlink {
  display: inline-block;
  vertical-align: middle;
  margin-top: 0.625rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-bottom: solid 1px #665D5A;
  padding-bottom: 3px;
}
.p_news__news .news__body .news-post .exlink span {
  font-family: YakuHanMP, "Noto Serif JP", serif;
  font-weight: 400;
  font-size: 0.8125rem;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 768px) {
  .p_news__news .news__body .news-post .exlink span {
    letter-spacing: 0.02em;
  }
}
.p_news__news .news__body a.news-post {
  display: block;
  -webkit-transition: all 0.5s cubic-bezier(0.3, 0.6, 0.4, 1);
  transition: all 0.5s cubic-bezier(0.3, 0.6, 0.4, 1);
}
@media (hover: hover) {
  .p_news__news .news__body a.news-post:hover {
    background: #F7F7F7;
  }
}
.p_news__news .news__more {
  margin-inline: auto;
  margin-block: 3.375rem 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
}
.p_news__news .wp-pagenavi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  max-width: 60rem;
}
@media screen and (max-width: 768px) {
  .p_news__news .wp-pagenavi {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}/*# sourceMappingURL=news.css.map */