@charset "utf-8";

.product_hero {
  box-sizing: border-box;
  display: flex;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 32px 0;
}
.product_hero_wrapper {
  box-sizing: border-box;
  width: 50%;
  padding: 0 48px 40px 0;
}
.product_hero_label {
  font-size: 18px;
  opacity: 0;
  animation: showUp 1.2s cubic-bezier(0.21, 0.42, 0.23, 1) forwards;
}
.product_hero_title {
  margin-top: 16px;
  opacity: 0;
  animation: showUp 1.2s cubic-bezier(0.21, 0.42, 0.23, 1) forwards 0.2s;
}
.product_hero_title_img {
  width: auto;
  height: 48px;
}
.product_hero_subtitle {
  margin-top: 16px;
  font-size: 28px;
  opacity: 0;
  animation: showUp 1.2s cubic-bezier(0.21, 0.42, 0.23, 1) forwards 0.4s;
}
.product_hero_text {
  margin-top: 16px;
  font-size: 16px;
  line-height: 1.6;
  opacity: 0;
  animation: showUp 1.2s cubic-bezier(0.21, 0.42, 0.23, 1) forwards 0.4s;
}
.product_hero_link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 48px;
  margin-top: 24px;
  background-color: #252f39;
  border-radius: 48px;
  opacity: 0;
  transition: background-color 0.15s ease;
  animation: showUp 1.2s cubic-bezier(0.21, 0.42, 0.23, 1) forwards 0.5s;
}
.product_hero_link_text {
  margin-right: 12px;
  color: #fff;
  font-weight: 500;
}
.product_hero_link_img {
  width: 16px;
  height: auto;
  margin-top: 2px;
}
.product_hero_img {
  width: 50%;
  height: auto;
  margin: -40px 0 0 auto;
  opacity: 0;
  animation: showUp 1.2s cubic-bezier(0.21, 0.42, 0.23, 1) forwards 0.6s;
}

@media screen and (max-width: 1140px) {
  .product_hero_img {
    margin: -24px 0 0 auto;
  }
}

@media screen and (max-width: 960px) {
  .product_hero_img {
    margin: 0 0 0 auto;
  }
}

@media screen and (max-width: 860px) {
  .product_hero {
    display: block;
  }
  .product_hero_wrapper {
    width: 100%;
    padding: 0;
  }
  .product_hero_img {
    width: 80%;
    margin: 0 auto;
  }
}

@media screen and (min-width: 641px) {
  .product_hero_link:hover {
    background-color: #435567;
  }
}

@media screen and (max-width: 640px) {
  .product_hero {
    padding: 48px 20px 0;
  }
  .product_hero_img {
    width: 100%;
  }
}

@media screen and (max-width: 480px) {
  .product_hero {
    padding: 32px 20px 0;
  }
  .product_hero_label {
    font-size: 16px;
  }
  .product_hero_title {
    margin-top: 8px;
  }
  .product_hero_title_img {
    height: 42px;
  }
  .product_hero_subtitle {
    font-size: 20px;
    line-height: 1.4;
  }
  .product_hero_text {
    font-size: 14px;
    line-height: 1.8;
  }
  .product_hero_img {
    margin-top: 24px;
  }
}
