@charset "utf-8";

.home_footer_links {
  display: flex;
  flex-wrap: wrap;
}
.home_footer_link {
  width: 25%;
  position: relative;
}
.home_footer_link_img {
  width: 100%;
  height: auto;
}
.home_footer_link_img.sp {
  display: none;
}
.home_footer_link_text_wrapper {
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 24px 32px;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.4);
  transition: background-color 0.15s ease;
}
.home_footer_link_title {
  color: #fff;
  font-size: 24px;
}
.home_footer_link_title:after {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  margin-top: 12px;
  background-color: #fff;
}
.home_footer_link_arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  padding: 0 24px;
  position: absolute;
  bottom: 24px;
  right: 24px;
  border: solid 1px #dce2e8;
  border-radius: 48px;
  transition: background-color 0.15s ease;
}
.home_footer_link_arrow_img {
  width: 18px;
  height: auto;
}

@media screen and (max-width: 860px) {
  .home_footer_link {
    width: 50%;
  }
  .home_footer_link_img.pc {
    display: none;
  }
  .home_footer_link_img.sp {
    display: block;
  }
  .home_footer_link_arrow {
    position: relative;
    bottom: auto;
    right: auto;
  }
}

@media screen and (min-width: 641px) {
  .home_footer_link:hover .home_footer_link_text_wrapper {
    background-color: rgba(0, 0, 0, 0.6);
  }
  .home_footer_link:hover .home_footer_link_arrow {
    background-color: #fff;
  }
  .home_footer_link:hover .home_footer_link_arrow_img {
    mix-blend-mode: difference;
  }
}

@media screen and (max-width: 640px) {
  .home_footer_link {
    width: 100%;
  }
  .home_footer_link_text_wrapper {
    padding: 24px 20px;
  }
}

@media screen and (max-width: 480px) {
  .home_footer_link_title {
    font-size: 20px;
  }
}
