.up-d_accordion-wd {
  width: 48%;
}

.up-d_accordion-flex {
  display: flex;
  justify-content: space-between;
  width: 680px;
  margin: 0 auto 20px;
}

.up-d_qa-head {
  position: relative;
  text-align: left;
  padding: 8px 16px;
  background-color: #f0e8de;
  border: none;
  cursor: pointer;
  width: 100%;
}

.up-d_qa-body {
  position: relative;
  line-height: 0;
  opacity: 0;
  transition: line-height 0.4s, padding 0.4s, opacity 0.4s;
}

.up-d_qa-head:after {
  content: "";
  border-top: 1px solid #333333;
  border-left: 1px solid #333333;
  display: inline-block;
  width: 10px;
  height: 10px;
  transform: rotate(-135deg) translateY(9px);
  position: absolute;
  right: 20px;
  top: 50%;
  transition: transform .4s;
}

.up-d_qa-body.up-d_is-open {
  padding: 8px 16px;
  line-height: 1.7;
  opacity: 1;
}

.up-d_qa-head.up-d_is-open::after {
  transform: rotate(45deg) translateY(-10px);
}
