@charset "utf-8";

.solution_hero {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  gap: 0 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 32px;
}
.solution_hero_title_wrapper {
  width: 55%;
}
.solution_hero.brands .solution_hero_title_wrapper {
  width: calc(45% - 40px);
}
.solution_hero_label {
  padding-left: 16px;
  font-size: 18px;
  opacity: 0;
  animation: showUp 1.2s cubic-bezier(0.21, 0.42, 0.23, 1) forwards;
}
.solution_hero_title {
  display: flex;
  align-items: center;
  margin-top: 16px;
  font-size: 56px;
  font-weight: 800;
  opacity: 0;
  animation: showUp 1.2s cubic-bezier(0.21, 0.42, 0.23, 1) forwards 0.2s;
}
.solution_hero_title::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 32px;
  margin-right: 16px;
  background-color: #182127;
}
.solution_hero_title_thin {
  font-weight: 600;
}
.solution_hero_text {
  margin-top: 24px;
  padding-left: 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;
}
.solution_hero_link_wrapper {
  display: flex;
  flex-wrap: wrap;
  width: calc(45% - 40px);
  border-top: 1px solid #eef3f7;
  opacity: 0;
  animation: showUp 1.2s cubic-bezier(0.21, 0.42, 0.23, 1) forwards 0.6s;
}
.solution_hero.brands .solution_hero_link_wrapper {
  width: 55%;
}
.solution_hero_link {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  width: 50%;
  min-height: 80px;
  padding: 16px;
  border-right: 1px solid #eef3f7;
  border-bottom: 1px solid #eef3f7;
  transition: background-color 0.15s ease;
}
.solution_hero.brands .solution_hero_link {
  width: 33.333%;
}
.solution_hero_link:nth-child(2n) {
  border-right: none;
}
.solution_hero.brands .solution_hero_link:nth-child(2n) {
  border-right: 1px solid #eef3f7;
}
.solution_hero.brands .solution_hero_link:nth-child(3n) {
  border-right: none;
}
.solution_hero_link_text {
  padding-right: 6px;
  line-height: 1.6;
}
.solution_hero_link_arrow {
  display: flex;
  align-items: center;
  height: 20px;
  margin-left: auto;
  padding: 0 12px;
  border: 1px solid #eef3f7;
  border-radius: 20px;
  transition: border-color 0.15s ease;
}
.solution_hero_link_arrow_img {
  width: 7px;
  height: auto;
}

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

@media screen and (max-width: 1040px) {
  .solution_hero {
    display: block;
  }
  .solution_hero_title_wrapper,
  .solution_hero.brands .solution_hero_title_wrapper {
    width: 100%;
  }
  .solution_hero_link_wrapper,
  .solution_hero.brands .solution_hero_link_wrapper {
    width: 100%;
    margin-top: 24px;
  }
}

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

@media screen and (max-width: 640px) {
  .solution_hero {
    padding: 48px 20px 40px;
  }
  .solution_hero_title {
    font-size: 48px;
  }
}

@media screen and (max-width: 480px) {
  .solution_hero {
    padding: 32px 20px 40px;
  }
  .solution_hero_label {
    font-size: 16px;
  }
  .solution_hero_title {
    margin-top: 8px;
    font-size: 32px;
  }
  .solution_hero_text {
    padding-left: 0;
    font-size: 14px;
    line-height: 1.8;
  }
  .solution_hero_link {
    padding: 16px 8px;
  }
  .solution_hero_link_text {
    font-size: 12px;
  }
  .solution_hero_link_arrow {
    height: 18px;
    padding: 0 10px;
    border-radius: 18px;
  }
  .solution_hero_link_arrow_img {
    width: 6px;
  }
}

@media screen and (max-width: 360px) {
  .solution_hero_title {
    font-size: 28px;
  }
}
