@charset "utf-8";

.product_footer {
  box-sizing: border-box;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 32px;
}
.product_footer_title {
  font-size: 24px;
  font-weight: 600;
}
.product_footer_list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 24px;
  border-top: 1px solid #eef3f7;
}
.product_footer_list_item {
  box-sizing: border-box;
  width: 33.333%;
  padding: 16px 24px;
  border-right: 1px solid #eef3f7;
  border-bottom: 1px solid #eef3f7;
  transition: background-color 0.15s ease;
}
.product_footer_list_item:nth-child(3n) {
  border-right: none;
}
.product_footer_list_item_link {
  display: flex;
  align-items: center;
}
.product_footer_list_item_link_img {
  width: auto;
  height: 32px;
}
.product_footer_list_item_link_text {
  margin-top: 4px;
  font-size: 13px;
}
.product_footer_list_item_link_arrow {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  height: 24px;
  margin-left: auto;
  padding: 0 12px;
  border: solid 1px #dce2e8;
  border-radius: 24px;
  transition: border-color 0.15s ease;
}
.product_footer_list_item_link_arrow_img {
  width: 18px;
  height: auto;
}

@media screen and (max-width: 960px) {
  .product_footer_list_item {
    width: 50%;
  }
  .product_footer_list_item:nth-child(3n) {
    border-right: 1px solid #eef3f7;
  }
  .product_footer_list_item:nth-child(2n) {
    border-right: none;
  }
}

@media screen and (min-width: 641px) {
  .product_footer_list_item:hover {
    background-color: #f6f8fa;
  }
  .product_footer_list_item:hover .product_footer_list_item_link_arrow {
    border-color: #182127;
  }
}

@media screen and (max-width: 640px) {
  .product_footer {
    padding: 40px 20px;
  }
  .product_footer_list_item {
    width: 100%;
    padding: 16px 8px;
    border-right: none;
  }
  .product_footer_list_item:nth-child(3n) {
    border-right: none;
  }
}

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