@charset "utf-8";

.product_futures {
  background-color: #f6f8fa;
}
.product_futures_wrapper {
  box-sizing: border-box;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 32px;
}
.product_futures_label {
  color: #a8b4bf;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  opacity: 0;
  animation: showUp 1.2s cubic-bezier(0.21, 0.42, 0.23, 1) forwards 0.4s;
}
.product_futures_description {
  margin-top: 12px;
  font-size: 24px;
  text-align: center;
  opacity: 0;
  animation: showUp 1.2s cubic-bezier(0.21, 0.42, 0.23, 1) forwards 0.4s;
}
.product_futures_list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 48px;
  opacity: 0;
  animation: showUp 1.2s cubic-bezier(0.21, 0.42, 0.23, 1) forwards 0.6s;
}
.product_futures_item {
  width: calc(50% - 12px);
  background-color: #fff;
}
.product_futures_item_title {
  padding: 48px 48px 0;
  font-size: 20px;
  font-weight: 500;
  text-align: center;
}
.product_futures_item_text {
  padding: 32px 48px 48px;
  font-size: 16px;
  line-height: 1.6;
}
.product_futures_item_img {
  width: 100%;
  height: auto;
  margin: 0 auto;
}

@media screen and (max-width: 1040px) {
  .product_futures_item_title {
    padding: 48px 32px 0;
  }
  .product_futures_item_text {
    padding: 32px 32px 48px;
  }
}

@media screen and (max-width: 860px) {
  .product_futures_item {
    width: 100%;
  }
  .product_futures_item_img {
    width: 80%;
  }
}

@media screen and (max-width: 640px) {
  .product_futures_wrapper {
    padding: 40px 20px;
  }
  .product_futures_list {
    margin-top: 24px;
  }
  .product_futures_item_img {
    width: 100%;
  }
}

@media screen and (max-width: 480px) {
  .product_futures_description {
    font-size: 20px;
    line-height: 1.4;
  }
  .product_futures_item_title {
    padding: 40px 24px 0;
    font-size: 18px;
    line-height: 1.4;
  }
  .product_futures_item_text {
    padding: 24px;
    font-size: 14px;
    line-height: 1.8;
  }
}
