/* =============================================
fv
============================================= */
.fv {
  width: 100%;
  height: fit-content;
  background: url(""), var(--color-yellow-light);
  background-size: 300px;
}
/* fv-記事 */
.fv__post {
  display: block;
  width: 1000px;
  margin: 0 auto;
  background: var(--color-white);
  border-radius: 16px;
  box-shadow: 0 0 0 0 var(--color-key-shadow), 0 2px 3px 0 var(--color-key-shadow);
  transition: 0.3s;
}
/* .fv__post:hover {
  opacity: 1;
  box-shadow: 0 15px 30px -5px var(--color-key-shadow), 0 0 5px var(--color-key-shadow);
  transform: translateY(-6px);
} */
.fv__post__wrap {
  display: flex;
  flex-flow: row nowrap;
  border-radius: 16px;
}
/* fv-記事・左・アイキャッチ */
.fv__post__eyecatch {
  position: relative;
  width: 600px;
  height: 370px;
  border-radius: 16px 0 0 16px;
  overflow: hidden;
  z-index: 1;
}
.fv__post__eyecatch img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
/* .fv__post:hover .fv__post__eyecatch img {
  transform: scale(1.03);
} */
/* fv-記事・右・テキスト */
.fv__post__text-wrap {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  width: 40%;
  padding: 24px;
}
.fv__post__meta-wrap {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
}
.fv__post__meta.cat-tag {
  font-size: 1.6rem;
}
.fv__post__meta.date {
  font-size: 1.6rem;
}
.fv__post__ttl {
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  font-size: 2.4rem;
  font-weight: 600;
  margin: 24px 0;
}
.fv__post__text {
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  font-size: 1.6rem;
}
@media only screen and (max-width: 1000px) {
  /* fv-記事 */
  .fv__post {
    width: 100%;
    border-radius: 6px;
    margin: 0 auto;
  }
  /* fv-記事・左・アイキャッチ */
  .fv__post__eyecatch {
    width: 60%;
    height: 100%;
    border-radius: 8px 0 0 8px;
  }
  .fv__post__eyecatch:before {
    display: block;
    content: "";
    padding-top: 61.5%;
  }
  /* fv-記事・右・テキスト */
  .fv__post__text-wrap {
    width: 40%;
    padding: 24px;
  }
  .fv__post__meta.cat-tag {
    font-size: 1.4rem;
  }
  .fv__post__ttl {
    font-size: 1.6rem;
    margin: 16px 0;
  }
  .fv__post__text {
    font-size: 1.4rem;
  }
}
@media only screen and (max-width: 768px) {
  /* fv-記事 */
  .fv__post {
    width: 100%;
    margin: 0 auto;
    border-radius: 6px;
  }
  .fv__post__wrap {
    display: flex;
    flex-flow: column nowrap;
    border-radius: 6px;
  }
  /* fv-記事・左・アイキャッチ */
  .fv__post__eyecatch {
    width: 100%;
    height: 100%;
    border-radius: 8px 8px 0 0;
  }
  .fv__post__eyecatch:before {
    display: block;
    content: "";
    padding-top: 61.5%;
  }
  /* fv-記事・右・テキスト */
  .fv__post__text-wrap {
    width: 100%;
    padding: 16px;
  }
  .fv__post__meta.cat-tag {
    font-size: 1.2rem;
  }
  .fv__post__ttl {
    margin: 8px 0 0;
  }
  .fv__post__text {
    display: none;
  }
}

/* =============================================
fv-スライダー
============================================= */
/* スライダーを包む親要素 */
.splide {
  width: 100%;
  margin: 0 auto;
}
/* .splide__trackの親要素 */
.splide-wrapper {
  position: relative;
}
/* スライダー要素が収まる要素 */
.splide__track {}
/* 各スライドを包む要素 */
.splide__list {}
/* 各スライドそのもの */
.splide__slide {
  width: 1000px;
  height: auto;
  padding: 40px 0 74px;
}
/* 前のスライド */
.splide__slide.is-prev {}
/* 現在のスライド */
.splide__slide.is-active {}
/* 次のスライド */
.splide__slide.is-next {}
/* ページネーション */
.splide__pagination {
  bottom: 40px !important;
}
.splide__pagination__page {
  width: 10px !important;
  height: 10px !important;
  margin: 0 16px !important;
}
.splide__pagination__page.is-active {
  background: var(--color-4d) !important;
}
/* 矢印ボタン */
.splide__arrow {
  opacity: 1 !important;
  top: 45% !important;
  width: 56px !important;
  height: 56px !important;
  background: var(--color-white) !important;
  box-shadow: 0 0 6px var(--color-key-shadow);
  z-index: 99;
}
/* 前に戻る */
.splide__arrow--prev {
  left: 2.4rem !important;
}
/* 次へ進む */
.splide__arrow--next {
  right: 2.4rem !important;
}
/* > */
.splide__arrow svg {
  width: 2rem !important;
  height: 2rem !important;
  fill: var(--color-text) !important;
}
@media only screen and (max-width: 1000px) {
  /* 各スライドそのもの */
  .splide__slide {
    width: calc(100% - 96px);
    padding: 40px 0 66px;
  }
  /* ページネーション */
  .splide__pagination {
    bottom: 32px !important;
  }
  /* 矢印ボタン */
  .splide__arrow {
    width: 40px !important;
    height: 40px !important;
    top: 45% !important;
  }
  /* 前に戻る */
  .splide__arrow--prev {
    left: 1.6rem !important;
  }
  /* 次へ進む */
  .splide__arrow--next {
    right: 1.6rem !important;
  }
  /* > */
  .splide__arrow svg {
    width: 1.6rem !important;
    height: 1.6rem !important;
    fill: var(--color-text) !important;
  }
}