.p-faq {
  margin-bottom: 8.5rem;
  padding-top: 7rem;
}
@media (min-width: 768px) {
  .p-faq {
    margin-bottom: 20rem;
    padding-top: 5rem;
  }
}
.p-faq__sec {
  margin-bottom: 5rem;
  padding-top: 1rem;
}
.p-faq__side {
  display: none;
}
@media (min-width: 768px) {
  .p-faq__side {
    display: flex;
    gap: 1.2rem;
    position: absolute;
    left: 3.4rem;
    flex-direction: column;
    padding-top: 1rem;
  }
}

.faq-hline {
  position: relative;
  display: inline-flex;
  justify-content: center;
  margin-bottom: 3rem;
  padding-block: 0.8rem 0.7rem;
  border-radius: 0.4rem;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.875;
  color: #FFF;
}
.faq-hline span {
  letter-spacing: 0.1em;
}
@media (min-width: 768px) {
  .faq-hline {
    margin-bottom: 4rem;
  }
}
.faq-hline::after {
  position: absolute;
  z-index: 1;
  bottom: 0;
  content: "";
}
.faq-hline.--farm {
  width: 20rem;
  background: linear-gradient(to bottom, #253E66, #3C547A);
}
.faq-hline.--farm::after {
  right: 1.1rem;
  width: 4.5rem;
  height: 3.8rem;
  background: url("../images/faq/icon_farm.svg") no-repeat center/contain;
  background-size: 4.5rem auto;
}
.faq-hline.--cafe {
  width: 22rem;
  background: linear-gradient(to bottom, #716747, #9C916D);
}
.faq-hline.--cafe::after {
  right: 0;
  width: 8.1rem;
  height: 3.3rem;
  background: url("../images/faq/icon_cafe.svg") no-repeat center/contain;
  background-size: 8.1rem auto;
}
.faq-hline span {
  position: relative;
  z-index: 2;
}
.btn-anchor {
  position: relative;
  display: flex;
  align-items: center;
  width: 20rem;
  padding: 1.4rem 1.5rem;
  border-radius: 0.4rem;
  line-height: 1;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  font-weight: 500;
  color: #fff;
  transition: 0.3s ease opacity;
}
@media (min-width: 768px) {
  .btn-anchor:hover {
    opacity: 0.8;
  }
}
.btn-anchor::after {
  position: absolute;
  right: 1rem;
  top: 50%;
  width: 2.1rem;
  height: 1rem;
  background: url("../images/common/icon_arrow.svg") no-repeat center/contain;
  background-size: 2.1rem auto;
  transform: translateY(-50%);
  content: "";
}
.btn-anchor.--farm {
  background: linear-gradient(to bottom, #253E66, #3C547A);
}
.btn-anchor.--cafe {
  background: linear-gradient(to bottom, #716747, #9C916D);
}