@media screen and (max-width: 414px) {
  .page-head {
    background-position: -410px 0;
  }
}

/* qa */
.tab-qa {
  display: flex;
  gap: 2rem;
}
.tab-qa li {
  background: #F7E8F8;
  border: 2px solid #A74F99;
  border-radius: 25px;
  transition: .5s;
}
.tab-qa li a {
  display: block;
  padding: 1rem 3.5rem 1rem 2rem;
  position: relative;
  transition: .5s;
}
.tab-qa li a::after {
  position: absolute;
  content: '\f13a';
  color: #A74F99;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
}
.tab-qa li:hover {
  background: #fff;
}
.tab-qa li:hover a {
  opacity: 1;
  color: #A74F99;
}
.ul-qa li:not(:last-child) {
  margin-bottom: 1rem;
}
.dl-qa dt,
.dl-qa dd {
  padding: 2rem;
  border-radius: 25px;
}
.dl-qa dt {
  cursor: pointer;
  background: #F7E8F8;
  position: relative;
}
.dl-qa dt::before,
.dl-qa dt::after {
  position: absolute;
  content: '';
  top: 1px;
  right: 20px;
  bottom: 0;
  background: #A74F99;
  margin: auto;
  height: 2px;
  width: 12px;
}
.dl-qa dt::after {
  transform: rotate(-90deg);
  transition: transform .5s;
}
.dl-qa dt.active::after {
  transform: rotate(0deg);
}
.dl-qa dd {
  border: 2px solid #A74F99;
  display: none;
  margin-top: 1rem;
}
@media screen and (max-width: 1024px) {
  .dl-qa dt {
    padding: 2rem 4rem 2rem 2rem;
  }
}
@media screen and (max-width: 767px) {
  .dl-qa dt {
    padding: 1rem 4rem 1rem 1rem;
  }
  .dl-qa dd {
    padding: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .tab-qa {
    flex-wrap: wrap;
    gap: 1rem;
  }
  .tab-qa li {
    width: 100%;
  }
}