.faq_main {
  padding: 66px 0 178px;
  overflow: hidden;
}
.faq_main .bg {
  width: 169.140625%;
  max-width: 2165px;
  aspect-ratio: 2165/1031;
  background: url(../img/distributor-bg.png) no-repeat center / contain;
  position: absolute;
  z-index: -1;
  left: -30%;
  top: -100px;
  transition: all 2s;
  pointer-events: none;
}
.faq_main h2 {
  font-size: 30px;
  font-weight: 500;
}
.faq_main .desc {
  color: #3d3d3d;
  font-size: 17px;
  font-weight: 500;
  line-height: 28px;
  margin-top: 1rem;
}
.faq_main .desc a {
  color: var(--subtheme_color);
  transition: all 0.3s;
}
.faq_main .desc a:hover {
  color: var(--theme_color);
  text-decoration: underline;
}
.faq_main .btn {
  margin-top: 28px;
}
.faq_main .main {
  margin-top: 24px;
}
.faq_main .left {
  width: 345px;
  position: sticky;
  top: 10rem;
}
.faq_main .sidebar li {
  padding: 5px 0;
  border-top: 1px solid rgba(61, 61, 61, 0.14);
}
.faq_main .sidebar li:last-child {
  border-bottom: 1px solid rgba(61, 61, 61, 0.14);
}
.faq_main .sidebar .item {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr auto;
  border-radius: 6px;
  transition: all 0.3s;
  cursor: pointer;
  color: #282828;
  font-size: 22px;
  font-weight: 500;
  padding: 14px 12px 14px 0;
  gap: 1rem;
}
.faq_main .sidebar .item::after {
  content: '';
  display: block;
  transition: all 0.3s;
  width: 8px;
  aspect-ratio: 8/14;
  background: url(../img/arrow-r-st.svg) no-repeat center / contain;
}
.faq_main .sidebar .active .item,
.faq_main .sidebar .item:hover {
  padding-left: 22px;
  color: var(--subtheme_color);
  background-color: #f7f7f7;
}
.faq_main .sidebar .active .item::after,
.faq_main .sidebar .item:hover::after {
  background-image: url(../img/arrow-r-t.svg);
}
.faq_main .order {
  margin-top: 76px;
}
.faq_main .technical {
  margin-top: 74px;
}
.faq_main .product {
  margin-top: 5rem;
}
.faq_main .product form {
  display: grid;
  grid-template-columns: auto 1fr;
  border-radius: 100px;
  border: 1px solid rgba(61, 61, 61, 0.14);
  margin-top: 20px;
  overflow: hidden;
}
.faq_main .product form input[type="submit"] {
  display: block;
  overflow: hidden;
  border-radius: 50%;
  text-indent: -999px;
  margin: 5px;
  width: 44px;
  aspect-ratio: 1;
  background: url(../img/icon-search-b.svg) no-repeat center / 44%;
}
.faq_main .product form input[type="text"] {
  width: 100%;
  display: block;
  color: var(--title_color);
  font-size: 18px;
  padding-right: 20px;
  background-color: transparent;
}
.faq_main .product form input[type="text"]::placeholder {
  color: #666666;
}
.faq_main .product .list {
  margin-top: 30px;
}
.faq_main .product .list ul {
  gap: 18px;
  display: grid;
}
.faq_main .product .list li {
  gap: 10px;
  display: flex;
  align-items: flex-start;
}
.faq_main .product .list li::before {
  content: '';
  display: block;
  width: 1rem;
  height: 1rem;
  aspect-ratio: 1;
  margin-right: 14px;
  transform: translateY(4px);
  background: url(../img/icon-blank.svg) no-repeat center / contain;
}
.faq_main .product .list li::after {
  content: '';
  display: block;
  width: 18px;
  height: 20px;
  aspect-ratio: 15 / 17;
  transform: translateY(2px);
  background: url(../img/tenor.gif) no-repeat center / contain;
  filter: brightness(1.1);
}
.faq_main .product .list li a {
  color: #4f4f4f;
  font-size: 17px;
  font-weight: 500;
  transition: all 0.3s;
}
.faq_main .product .list li a:hover {
  color: var(--theme_color);
  text-decoration: underline;
}
.faq_main .product .list button {
  color: var(--subtheme_color);
  background-color: transparent;
  font-size: 18px;
  font-weight: 500;
  transition: all 0.3s;
  gap: 5px;
  display: grid;
  align-items: center;
  grid-template-columns: 1fr auto;
  max-width: max-content;
  margin-top: 26px;
  margin-left: 40px;
}
.faq_main .product .list button::after {
  content: '';
  display: block;
  width: 10px;
  aspect-ratio: 1;
  background: url(../img/icon-add.svg) no-repeat center / contain;
}
.faq_main .product .list button:hover {
  filter: contrast(0) brightness(0);
}
.faq_main .right {
  flex: 1;
  max-width: 866px;
}
.faq_main .top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: -8px;
}
.faq_main .top .qty {
  font-size: 20px;
  font-weight: 500;
}
.faq_main .top form {
  width: 345px;
  display: grid;
  grid-template-columns: 1fr auto;
  border-radius: 100px;
  border: 1px solid #e4e4e4;
  overflow: hidden;
}
.faq_main .top form input[type="text"] {
  width: 100%;
  display: block;
  background-color: transparent;
  color: var(--title_color);
  font-size: 18px;
  padding: 0 22px;
}
.faq_main .top form input[type="text"]::placeholder {
  color: #666666;
}
.faq_main .top form input[type="submit"] {
  display: block;
  margin: 5px;
  width: 44px;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  text-indent: -999px;
  transition: all 0.3s;
  background: url(../img/icon-search-w.svg) no-repeat center / 44% var(--subtheme_color);
}
.faq_main .top form input[type="submit"]:hover {
  background-color: var(--theme_color);
}
.faq_main .top .btn_menu_faq {
  display: none;
}
.faq_main .list {
  margin-top: 42px;
}
