.home_banner {
  padding: 1.1rem 0;
}
.home_banner .flex {
  min-height: 56.2rem;
  border-radius: 0.6rem;
  overflow: hidden;
  padding: 4rem 2rem;
}
.home_banner .flex::before {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  content: '';
  background-color: #000;
  opacity: 0.35;
  pointer-events: none;
  z-index: -1;
}
.home_banner .form {
  border-radius: 0.7rem;
  background-color: rgba(123, 123, 123, 0.75);
  flex: 1;
  max-width: 63.3rem;
  padding: 5.8rem 3rem 5.7rem;
  margin-bottom: 0.3rem;
}
.home_banner form {
  display: grid;
  gap: 1rem;
  max-width: 46.5rem;
  margin: 0 auto;
}
.home_banner form span {
  width: 100%;
}
.home_banner form h1 {
  font-size: 2.9rem;
  font-weight: 500;
  color: #fff;
  text-align: center;
  margin-bottom: 0.5rem;
}
.home_banner form input,
.home_banner form select {
  display: block;
  width: 100%;
  font-size: 1.6rem;
  color: #111111;
  border-radius: 0.3rem;
  background: #fff;
  height: 4.9rem;
  padding: 0 2.2rem;
}
.home_banner form select {
  background: url("../img/icon-trigle.svg") no-repeat center right 2rem/0.8rem #fff;
  padding-right: 4rem;
  height: 5.1rem;
}
.home_banner form span:has(input[type=submit]) {
  margin-top: 1rem;
}
.home_banner form input[type=submit] {
  font-weight: 500;
  color: #fff;
  background-color: var(--primary);
  border: 1px solid var(--primary);
  transition: all 0.3s;
}
.home_banner form input[type=submit]:hover {
  background-color: transparent;
  color: var(--primary);
}
.home_notice {
  padding: 0.6rem 0;
}
.home_discover .head {
  padding: 0 0 1.1%;
}
.home_categories {
  padding: 8.1rem 0 14rem;
}
.home_categories h2 {
  font-size: 4rem;
  font-weight: 500;
}
.home_categories .home_categories_swiper {
  overflow: hidden;
  margin-top: 3.7rem;
}
.home_categories .home_categories_swiper .swiper-slide {
  max-width: 285px;
}
.home_categories .item {
  display: block;
  height: 100%;
}
.home_categories .item:hover img {
  transform: scale(1.02);
}
.home_categories .item:hover .title {
  transform: translateX(0);
  color: var(--primary);
}
.home_categories .item:hover .title::after {
  transform: translateX(0);
  opacity: 1;
  filter: unset;
}
.home_categories .item .img {
  padding-bottom: 100%;
}
.home_categories .item .title {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  font-weight: 500;
  transition: all 0.3s;
  gap: 1rem;
  margin-top: 1.3rem;
  transform: translateX(1.6rem);
}
.home_categories .item .title::after {
  background: url("../img/arrow-r.svg") no-repeat center / contain;
  filter: contrast(0) brightness(0);
  display: inline-block;
  transition: all 0.3s;
  flex-shrink: 0;
  content: '';
  width: 1.8rem;
  height: 1.8rem;
  transform: translateX(-100%);
  opacity: 0;
}
@media screen and (max-width: 768px) {
  .home_banner {
    padding: 10px 0;
  }
  .home_banner .flex {
    min-height: unset;
    padding: 50px 20px;
  }
  .home_banner .form {
    padding: 30px 20px;
    margin: 0;
  }
  .home_banner form h1 {
    font-size: 25px;
    margin-bottom: 10px;
  }
  .home_banner form input,
  .home_banner form textarea,
  .home_banner form select {
    font-size: 14px;
    height: 46px;
    padding: 0 20px;
  }
  .home_banner form select {
    padding-right: 40px;
  }
  .home_notice {
    padding: 10px 0;
  }
  .home_categories {
    padding: 50px 0;
    overflow: hidden;
  }
  .home_categories .home_categories_swiper {
    overflow: unset;
  }
  .home_categories .home_categories_swiper .swiper-slide {
    max-width: 226px;
  }
  .home_categories .item .title {
    font-size: 18px;
    margin-top: 10px;
    transform: translate(0);
  }
  .home_categories .item .title::after {
    display: none;
  }
  .home_categories .swiper_btns.middle {
    position: static;
    width: 100%;
    padding: 0 30px;
    justify-content: flex-end;
    margin-top: 30px;
    transform: translateX(0);
  }
}
@media screen and (max-width: 576px) {
  .home_categories .swiper_btns.middle {
    padding: 0 20px;
  }
}
