@charset "UTF-8";
.fv {
  overflow: hidden;
}

.fv__category {
  overflow-x: scroll;
  padding: 0.25rem 3.5%;
  min-height: 2.5rem;
  background-color: #153E68;
  box-sizing: border-box;
}
@media screen and (min-width: 576px) {
  .fv__category {
    min-height: 3.125rem;
  }
}
@media screen and (min-width: 768px) {
  .fv__category {
    display: none;
  }
}

.fv__category_list {
  display: flex;
  align-items: center;
  gap: 0.9375rem;
  height: inherit;
  flex-shrink: 0;
  width: max-content;
  margin-inline: auto;
}

.fv__category_item_link {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  padding: 0.5em 0.6em;
  border-radius: 0.25rem;
  white-space: nowrap;
  transition: background-color 0.3s ease-in;
}
@media screen and (min-width: 576px) {
  .fv__category_item_link {
    font-size: 0.875rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .fv__category_item_link:hover {
    opacity: 1;
    background-color: #22A3D4;
  }
}

.fv__wrapper {
  position: relative;
  padding-block: 0.625rem 1.25rem;
}
@media screen and (min-width: 576px) {
  .fv__wrapper {
    padding-block: 1.25rem 1.875rem;
  }
}
@media screen and (min-width: 768px) {
  .fv__wrapper {
    padding-block: 2.5rem;
  }
}
@media screen and (min-width: 992px) {
  .fv__wrapper {
    //padding: 3.75rem 2.5rem;
  }
}
@media screen and (min-width: 992px) {
  .fv__wrapper {
    padding: 0rem 2.5rem 3.75rem;
  }
}

.fv__inner {
  position: relative;
  max-width: 1065px;
  margin-inline: auto;
  box-sizing: content-box;
  padding: 0 3.5%;
}
@media screen and (min-width: 768px) {
  .fv__inner {
    padding: 0 10%;
  }
}

/* スライダー */
.swiper {
  position: relative;
}
@media screen and (min-width: 768px) {
  .swiper {
    overflow: visible;
  }
}

/* スライダー ボタン */
.swiper-button-next,
.swiper-button-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  background-color: #153E68;
  border-radius: 50%;
  z-index: 1;
  margin: 0;
  cursor: pointer;
}
@media screen and (min-width: 400px) {
  .swiper-button-next,
  .swiper-button-prev {
    width: 2.625rem;
    height: 2.625rem;
  }
}
@media screen and (min-width: 576px) {
  .swiper-button-next,
  .swiper-button-prev {
    width: 3.25rem;
    height: 3.25rem;
  }
}
@media screen and (min-width: 768px) {
  .swiper-button-next,
  .swiper-button-prev {
    width: 4.5rem;
    height: 4.5rem;
  }
}
@media screen and (min-width: 992px) {
  .swiper-button-next,
  .swiper-button-prev {
    width: 5.125rem;
    height: 5.125rem;
  }
}

.swiper-button-next::after,
.swiper-button-prev::after {
  content: "";
  display: block;
  width: 0.5rem;
  height: 1.4375rem;
  mask-image: url("/media/images/top/icon_arrow-fv.svg");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  background-color: #fff;
  font-size: 0;
}
@media screen and (min-width: 576px) {
  .swiper-button-next::after,
  .swiper-button-prev::after {
    width: 0.75rem;
    height: 1.6875rem;
  }
}
@media screen and (min-width: 992px) {
  .swiper-button-next::after,
  .swiper-button-prev::after {
    width: 1.3125rem;
    height: 2.25rem;
  }
}

.swiper-button-prev {
  left: auto;
  right: calc(100% - 2.375rem);
}
@media screen and (min-width: 400px) {
  .swiper-button-prev {
    right: calc(100% - 3.125rem);
  }
}
@media screen and (min-width: 576px) {
  .swiper-button-prev {
    right: calc(100% - 3.75rem);
  }
}
@media screen and (min-width: 768px) {
  .swiper-button-prev {
    right: calc(100% - 1.5625rem);
  }
}

.swiper-button-prev::after {
  transform: translateX(-1px);
}

.swiper-button-next {
  right: auto;
  left: calc(100% - 2.375rem);
}
@media screen and (min-width: 400px) {
  .swiper-button-next {
    left: calc(100% - 3.125rem);
  }
}
@media screen and (min-width: 576px) {
  .swiper-button-next {
    left: calc(100% - 3.75rem);
  }
}
@media screen and (min-width: 768px) {
  .swiper-button-next {
    left: calc(100% - 1.5625rem);
  }
}

.swiper-button-next::after {
  transform: translateX(1px) rotate(180deg);
}

.swiper-button-next.is-pc,
.swiper-button-prev.is-pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .swiper-button-next.is-pc,
  .swiper-button-prev.is-pc {
    display: grid;
  }
}

.swiper-button-next.is-sp,
.swiper-button-prev.is-sp {
  display: grid;
}
@media screen and (min-width: 768px) {
  .swiper-button-next.is-sp,
  .swiper-button-prev.is-sp {
    display: none;
  }
}

/* スライダー ページネーション */
.swiper-pagination {
  position: sticky;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  width: 100%;
  z-index: 10;
  bottom: 0 !important;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .swiper-pagination {
    margin-top: 1.5625rem;
  }
}
@media screen and (min-width: 992px) {
  .swiper-pagination {
    margin-top: 1.875rem;
  }
}
@media screen and (min-width: 400px) {
  .swiper-pagination {
    gap: 0.75rem;
  }
}
@media screen and (min-width: 576px) {
  .swiper-pagination {
    gap: 1rem;
  }
}

.swiper-pagination-bullet {
  width: 2.5rem;
  height: 0.25rem;
  background-color: #D8D8D8;
  border-radius: 0.625rem;
  transition: background-color 0.3s ease;
  opacity: 1;
  cursor: pointer;
  border: none;
  padding: 0;
  margin: 0;
}
@media screen and (min-width: 400px) {
  .swiper-pagination-bullet {
    width: 3.125rem;
    height: 0.3125rem;
  }
}
@media screen and (min-width: 576px) {
  .swiper-pagination-bullet {
    width: 4.375rem;
    height: 0.375rem;
  }
}
@media screen and (min-width: 992px) {
  .swiper-pagination-bullet {
    width: 5.625rem;
    height: 0.5rem;
  }
}

.swiper-pagination-bullet-active {
  background-color: #153E68;
}

.swiper-slide:not(.swiper-slide-visible) .fv__slide_link {
  pointer-events: none;
}

.swiper-slide:not(.swiper-slide-visible) .fv__slide_link::after {
  opacity: 1;
}

.fv__slide_link {
  position: relative;
  display: block;
}
@media (hover: hover) and (pointer: fine) {
  .fv__slide_link:hover {
    opacity: 1;
  }
  .fv__slide_link:hover .fv__slide_image img {
    transform: scale(1.05);
  }
}

.fv__slide_link::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(21, 62, 104, 0.3);
  border-radius: 1.25rem;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.6s ease-out;
}

.fv__slide_image {
  overflow: hidden;
  border-radius: 1.25rem;
}

.fv__slide_image img {
  width: 100%;
  object-fit: cover;
  border-radius: 1.25rem;
  aspect-ratio: 390/256;
  transition: transform 0.3s ease-in;
}
@media screen and (min-width: 768px) {
  .fv__slide_image img {
    aspect-ratio: 1065/570;
  }
}

.fv__slide_title {
  position: absolute;
  bottom: 1.25rem;
  left: 0;
  padding: 1.25rem 3.7558685446%;
  border-radius: 0 1.25rem 0 0;
  background-color: rgba(255, 255, 255, 0.8);
  max-width: 15rem;
  width: 100%;
}
@media screen and (min-width: 576px) {
  .fv__slide_title {
    max-width: 20rem;
  }
}
@media screen and (min-width: 768px) {
  .fv__slide_title {
    bottom: 2.5rem;
    max-width: 44.1314553991%;
  }
}

.fv__slide_title_text {
  font-size: 0.8125rem;
  font-weight: 700;
  color: #3C3C3C;
  letter-spacing: 0.01em;
  line-height: 1.3571428571;
}
@media screen and (min-width: 576px) {
  .fv__slide_title_text {
    font-size: 1rem;
    max-width: 20rem;
  }
}
@media screen and (min-width: 768px) {
  .fv__slide_title_text {
    font-size: 1.125rem;
  }
}
@media screen and (min-width: 992px) {
  .fv__slide_title_text {
    font-size: 1.25rem;
  }
}
@media screen and (min-width: 1200px), print {
  .fv__slide_title_text {
    font-size: 1.75rem;
  }
}

.posts {
  padding-block: 2.5rem;
}
@media screen and (min-width: 768px) {
  .posts {
    padding-block: 5rem;
  }
}

.posts__list {
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .posts__list {
    margin-top: 2.5rem;
  }
}

.posts__button {
  text-align: center;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .posts__button {
    margin-top: 2.5rem;
  }
}

.posts__button .button {
  width: 100%;
  max-width: 21.75rem;
}

.ranking {
  padding-block: 2.5rem;
  border-top: 1px solid #B1B3B5;
}
@media screen and (min-width: 768px) {
  .ranking {
    padding-block: 5rem;
  }
}

.ranking__list {
  display: flex;
  flex-direction: column;
  margin-top: 1.875rem;
}
@media screen and (min-width: 576px) {
  .ranking__list {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2.1875rem 0;
  }
}
@media screen and (min-width: 768px) {
  .ranking__list {
    margin-top: 2.5rem;
  }
}

.ranking__item {
  position: relative;
  padding: 0.375rem 0;
}
@media screen and (min-width: 576px) {
  .ranking__item {
    padding: 0.25rem 0.625rem;
    min-width: 16.125rem;
    width: calc((100% - 3.75rem) / 2);
  }
}
@media screen and (min-width: 768px) {
  .ranking__item {
    min-width: 20.625rem;
    width: calc((100% - 5.625rem) / 3);
    padding: 0.3125rem 0.9375rem;
  }
}

.ranking__item::before {
  position: absolute;
  top: -4px;
  left: -7px;
  display: grid;
  place-content: center;
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  width: 2rem;
  height: 2rem;
  background-color: #153E68;
  border-radius: 50%;
  z-index: 1;
}
@media screen and (min-width: 576px) {
  .ranking__item::before {
    width: 3.125rem;
    height: 3.125rem;
    font-size: 1.25rem;
    top: 0;
    left: 0;
  }
}
@media screen and (min-width: 768px) {
  .ranking__item::before {
    width: 3.75rem;
    height: 3.75rem;
    font-size: 1.375rem;
  }
}
@media screen and (min-width: 1200px), print {
  .ranking__item::before {
    width: 4.375rem;
    height: 4.375rem;
    font-size: 1.5rem;
  }
}

.ranking__item:nth-child(1)::before {
  content: "1";
  background-color: #A39257;
}

.ranking__item:nth-child(2)::before {
  content: "2";
  background-color: #919191;
}

.ranking__item:nth-child(3)::before {
  content: "3";
  background-color: #A37D57;
}

.ranking__item:nth-child(4)::before {
  content: "4";
}

.ranking__item:nth-child(5)::before {
  content: "5";
}

.highlight {
  padding-block: 2.5rem;
  border-top: 1px solid #B1B3B5;
}
@media screen and (min-width: 768px) {
  .highlight {
    padding-block: 5rem;
  }
}

.highlight__list {
  display: flex;
  gap: 0.625rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .highlight__list {
    gap: 1rem;
  }
}

@media screen and (min-width: 576px) {
  .highlight__item {
    min-width: 15.5rem;
    width: calc((100% - 2rem) / 3);
  }
}
@media screen and (min-width: 768px) {
  .highlight__item {
    min-width: 20rem;
  }
}

.highlight__item_image {
  border-radius: 0.625rem;
}

.entry-post {
  padding-block: 2.5rem;
}
@media screen and (min-width: 768px) {
  .entry-post {
    padding-block: 5rem;
  }
}

.entry-post__list {
  display: flex;
  gap: 0.625rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .entry-post__list {
    gap: 1rem;
  }
}

@media screen and (min-width: 576px) {
  .entry-post__item {
    min-width: 15.5rem;
    width: calc((100% - 2rem) / 3);
  }
}
@media screen and (min-width: 768px) {
  .entry-post__item {
    min-width: 20rem;
  }
}

.entry-post__item_image {
  border-radius: 0.625rem;
}

.entry-post__item_image img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 390/181;
  border-radius: 0.625rem;
}

.entry-post__banner {
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .entry-post__banner {
    margin-top: 5rem;
  }
}

.news {
  padding-block: 2.5rem;
}
@media screen and (min-width: 768px) {
  .news {
    padding-block: 6.25rem;
  }
}

.news__list {
  display: grid;
  gap: 0.5rem;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .news__list {
    margin-top: 2.5rem;
    gap: 0.9375rem;
  }
}

.news__item {
  background-color: #fff;
  border-radius: 0.625rem;
}
@media screen and (min-width: 768px) {
  .news__item {
    border-radius: 1.25rem;
  }
}

.news__item_link {
  display: grid;
  grid-template-columns: 6.625rem 1fr;
  gap: 0.9375rem;
  padding: 0.9375rem;
  align-items: center;
}
@media screen and (min-width: 400px) {
  .news__item_link {
    gap: 1.25rem;
    padding: 1.25rem;
  }
}
@media screen and (min-width: 768px) {
  .news__item_link {
    gap: 3.75%;
    grid-template-columns: 7.8125rem 1fr;
    padding: 2.5rem 6.6666666667%;
  }
}
@media (hover: hover) and (pointer: fine) {
  .news__item_link:hover {
    opacity: 1;
  }
  .news__item_link:hover .news__item_title {
    color: #153E68;
  }
}

.news__item_date time {
  font-size: 0.875rem;
  color: #153E68;
  letter-spacing: 0.022em;
}
@media screen and (min-width: 768px) {
  .news__item_date time {
    font-size: 1.0625rem;
  }
}

.news__item_title {
  font-size: 0.875rem;
  font-weight: 700;
  color: #3C3C3C;
  transition: color 0.3s ease-in;
}
@media screen and (min-width: 768px) {
  .news__item_title {
    font-size: 1rem;
  }
}

.news__button {
  text-align: center;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .news__button {
    margin-top: 2.5rem;
  }
}

.news__button .button {
  width: 100%;
  max-width: 21.75rem;
}

.future {
  padding-block: 2.5rem;
}
@media screen and (min-width: 768px) {
  .future {
    padding-block: 6.25rem;
  }
}

.future__list {
  display: flex;
  gap: 1.875rem 0.9375rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .future__list {
    margin-top: 2.5rem;
  }
}

@media screen and (min-width: 576px) {
  .future__item {
    min-width: 15.5rem;
    width: calc((100% - 1.875rem) / 3);
  }
}
@media screen and (min-width: 768px) {
  .future__item {
    min-width: 21.25rem;
  }
}

.future__item_link {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.future__item_image {
  border-radius: 0.625rem;
}

.future__item_image img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 390/215;
  border-radius: 0.625rem;
}

.future__item_title {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.7647058824;
  text-align: center;
  margin-top: 0.625rem;
  flex-grow: 1;
}
@media screen and (min-width: 768px) {
  .future__item_title {
    font-size: 1.0625rem;
  }
}

.futre__item_text {
  font-size: 0.8125rem;
  line-height: 1.8571428571;
  color: #716F6F;
  margin-top: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .futre__item_text {
    font-size: 0.875rem;
  }
}/*# sourceMappingURL=style-home.css.map */