/*************************************************

news-index

*************************************************/
.news-index-wide {
  width: min(90.4rem, 100% - 4rem);
  margin-left: auto;
  margin-right: auto;
}

/*************************************************

news-index-area01

*************************************************/
/* news-index-area01__tab
---------------------------------------*/
.news-index-area01__tab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.8rem 4rem;
  margin-bottom: 4rem;
  padding-bottom: 1.6rem;
  border-bottom: #565656 solid 0.2rem;
}
@media screen and (max-width: 767px) {
  .news-index-area01__tab {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 0.8rem 2rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
  }
}

.news-index-area01__tab-button {
  position: relative;
  display: block;
  color: #2E2E2E;
  padding-left: 1em;
  font-size: 1.4rem;
  line-height: 1.3;
  font-weight: 600;
  text-decoration: none;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.news-index-area01__tab-button::before {
  position: absolute;
  top: 0.5em;
  left: 0;
  display: block;
  content: "";
  width: 0.4285714286em;
  height: 0.4285714286em;
  background-color: #AC3A3A;
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media (any-hover: hover) {
  .news-index-area01__tab-button:hover {
    color: #AC3A3A;
  }
}
.news-index-area01__tab-button.is-current {
  color: #AC3A3A;
}
.news-index-area01__tab-button.is-current::before {
  opacity: 1;
}

/* news-index-area01__list
---------------------------------------*/
.news-index-area01__list-item {
  border-bottom: #565656 solid 1px;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
}
.news-index-area01__list-item:last-child {
  margin-bottom: 0;
}

.news-index-area01__list-anchor {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .news-index-area01__list-anchor {
    display: block;
  }
}

.news-index-area01__list-img {
  width: 16.8rem;
  aspect-ratio: 168/126;
  background-color: #565656;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (max-width: 767px) {
  .news-index-area01__list-img {
    width: 100%;
  }
}
@media (any-hover: hover) {
  a:hover .news-index-area01__list-img {
    opacity: 0.7;
  }
}

.news-index-area01__list-letters {
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: calc(100% - 20rem);
  margin-top: 1.3rem;
  padding-right: 6rem;
}
@media screen and (max-width: 767px) {
  .news-index-area01__list-letters {
    width: 100%;
    margin-top: 0.5rem;
    padding-right: 0;
  }
}
.news-index-area01__list-letters::after {
  position: absolute;
  right: 2.5rem;
  top: 50%;
  display: block;
  content: "";
  width: 0.8rem;
  height: 0.8rem;
  border-right: #AC3A3A solid 1px;
  border-top: #AC3A3A solid 1px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: right 0.3s;
  transition: right 0.3s;
}
@media screen and (max-width: 767px) {
  .news-index-area01__list-letters::after {
    display: none;
  }
}
@media (any-hover: hover) {
  a:hover .news-index-area01__list-letters::after {
    right: 2rem;
  }
}

.news-index-area01__list-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .news-index-area01__list-meta {
    margin-bottom: 0.8rem;
  }
}

.news-index-area01__list-label {
  padding: 0.5rem 1.5rem;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 500;
  background-color: #565656;
}
@media screen and (max-width: 767px) {
  .news-index-area01__list-label {
    font-size: 1rem;
  }
}

.news-index-area01__list-date {
  font-size: 1.4rem;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .news-index-area01__list-date {
    font-size: 1.2rem;
  }
}

.news-index-area01__list-title {
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.5;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
@media screen and (max-width: 767px) {
  .news-index-area01__list-title {
    font-size: 1.6rem;
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }
}
@media (any-hover: hover) {
  a:hover .news-index-area01__list-title {
    color: #AC3A3A;
  }
}

/*************************************************

news-index-area02

*************************************************/
.news-index-area02 {
  overflow: hidden;
  position: relative;
  margin: 10rem 0 10rem;
}
@media screen and (max-width: 767px) {
  .news-index-area02 {
    margin-top: 6rem;
  }
}
.news-index-area02::before {
  display: block;
  content: "";
  width: 100%;
  height: 4rem;
  margin-bottom: 3rem;
  background: -webkit-gradient(linear, left bottom, left top, from(rgb(255, 255, 255)), to(rgba(245, 245, 245, 0.3)));
  background: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgba(245, 245, 245, 0.3) 100%);
}

.news-index-area02__swiper {
  position: relative;
  margin-bottom: 6rem;
}
.news-index-area02__swiper:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .news-index-area02__swiper .swiper-wrapper {
    gap: 1.6rem;
  }
}
.news-index-area02__swiper .swiper-slide {
  height: auto;
}
@media screen and (min-width: 768px) {
  .news-index-area02__swiper .swiper-slide {
    width: calc(33.3333333333% - 1.0666666667rem);
    -ms-flex-negative: inherit;
        flex-shrink: inherit;
  }
}

.news-index-area02__swiper-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 100%;
}

.news-index-area02__swiper-anchor {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  text-decoration: none;
  background-color: #F7F7F7;
  -webkit-transition: background-color 0.4s, color 0.4s;
  transition: background-color 0.4s, color 0.4s;
}
@media (any-hover: hover) {
  .news-index-area02__swiper-anchor:hover {
    color: #fff;
    background-color: #AC3A3A;
  }
  .news-index-area02__swiper-anchor:hover img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  .news-index-area02__swiper-anchor:hover .news-index-area02__swiper-label {
    background-color: #AC3A3A;
  }
}

.news-index-area02__swiper-label {
  position: absolute;
  left: 0;
  top: 0;
  padding: 0.5rem 1.5rem;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.05em;
  background-color: #565656;
  -webkit-transition: background-color 0.4s, color 0.4s;
  transition: background-color 0.4s, color 0.4s;
  z-index: 5;
}
@media screen and (max-width: 767px) {
  .news-index-area02__swiper-label {
    padding: 0.4rem 1rem;
    font-size: 1.2rem;
  }
}

.news-index-area02__swiper-img {
  overflow: hidden;
  width: 100%;
  aspect-ratio: 352/264;
}
.news-index-area02__swiper-img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
}

.news-index-area02__swiper-text {
  margin: 1rem;
  font-weight: 500;
  line-height: 1.5;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}

.news-index-area02__swiper-bottom {
  margin-top: auto;
  padding: 0 1rem 2rem;
  font-size: 1.4rem;
  font-weight: 600;
  text-align: right;
}

@media screen and (min-width: 768px) {
  .news-index-area02__swiper-buttom {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .news-index-area02__swiper-buttom {
    position: absolute;
    top: 0;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    line-height: 0;
    cursor: pointer;
    opacity: 1;
    -webkit-transition: opacity 0.4s;
    transition: opacity 0.4s;
    z-index: 10;
  }
  .news-index-area02__swiper-buttom img {
    width: 3.2rem;
  }
  .news-index-area02__swiper-buttom.swiper-button-disabled {
    opacity: 0;
  }
  .news-index-area02__swiper-buttom.is-prev {
    left: -1rem;
  }
  .news-index-area02__swiper-buttom.is-prev img {
    -webkit-transform: scale(-1, 1);
            transform: scale(-1, 1);
  }
  .news-index-area02__swiper-buttom.is-next {
    right: -1rem;
  }
}

/*************************************************

news-index-pagenavi

*************************************************/
.news-index-pagenavi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.news-index-pagenavi .wp-pagenavi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 8rem;
}
@media screen and (max-width: 767px) {
  .news-index-pagenavi .wp-pagenavi {
    margin-top: 5rem;
    font-size: 1.4rem;
  }
}
.news-index-pagenavi .page,
.news-index-pagenavi .current {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 3.6rem;
  height: 3.6rem;
  color: #AC3A3A;
  font-weight: 500;
  background-color: #F6F6F6;
  text-decoration: none;
  border-radius: 0.5rem;
  -webkit-transition: color 0.3s, background-color 0.3s;
  transition: color 0.3s, background-color 0.3s;
}
@media screen and (max-width: 767px) {
  .news-index-pagenavi .page,
  .news-index-pagenavi .current {
    width: 3.2rem;
    height: 3.2rem;
  }
}
@media (any-hover: hover) {
  .news-index-pagenavi .page:hover,
  .news-index-pagenavi .current:hover {
    color: #fff;
    background-color: #AC3A3A;
  }
}
.news-index-pagenavi .current {
  color: #fff;
  background-color: #AC3A3A;
}
.news-index-pagenavi .extend {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 3rem;
  height: 3.6rem;
}
@media screen and (max-width: 767px) {
  .news-index-pagenavi .extend {
    height: 3.2rem;
  }
}
.news-index-pagenavi .nextpostslink,
.news-index-pagenavi .previouspostslink {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 7.8rem;
  height: 3.6rem;
  padding: 0 1.3rem;
  color: #AC3A3A;
  font-weight: 500;
  background-color: #F6F6F6;
  text-decoration: none;
  border-radius: 0.5rem;
  -webkit-transition: color 0.3s, background-color 0.3s;
  transition: color 0.3s, background-color 0.3s;
}
@media screen and (max-width: 767px) {
  .news-index-pagenavi .nextpostslink,
  .news-index-pagenavi .previouspostslink {
    width: 7rem;
    height: 3.2rem;
  }
}
@media (any-hover: hover) {
  .news-index-pagenavi .nextpostslink:hover,
  .news-index-pagenavi .previouspostslink:hover {
    color: #fff;
    background-color: #AC3A3A;
  }
  .news-index-pagenavi .nextpostslink:hover::before,
  .news-index-pagenavi .previouspostslink:hover::before {
    border-color: #fff;
  }
}
.news-index-pagenavi .nextpostslink::before,
.news-index-pagenavi .previouspostslink::before {
  position: absolute;
  top: 50%;
  display: block;
  content: "";
  width: 0.4em;
  height: 0.4em;
  margin-top: -0.15em;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
}
.news-index-pagenavi .nextpostslink {
  margin-left: 2.4rem;
}
@media screen and (max-width: 767px) {
  .news-index-pagenavi .nextpostslink {
    margin-left: 1rem;
  }
}
.news-index-pagenavi .nextpostslink::before {
  right: 1.2rem;
  border-right: solid #AC3A3A 1px;
  border-top: solid #AC3A3A 1px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.news-index-pagenavi .previouspostslink {
  margin-right: 2.4rem;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (max-width: 767px) {
  .news-index-pagenavi .previouspostslink {
    margin-right: 1rem;
  }
}
.news-index-pagenavi .previouspostslink::before {
  left: 1.2rem;
  border-left: solid #AC3A3A 1px;
  border-top: solid #AC3A3A 1px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.news-index-pagenavi .pages,
.news-index-pagenavi .last,
.news-index-pagenavi .first {
  display: none;
}