#QUESTION {
  background-color: var(--bg-lightgray);
}
#QUESTION .accordion {
  margin: 32px 0;
  border-bottom: 1px solid #ccc;
}
#QUESTION .accordion-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  position: relative;
  color: var(--text-darkgray);
  font-weight: 600;
}
#QUESTION .accordion-header:hover {
  opacity: 0.8;
}
#QUESTION .accordion-header .q {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  min-width: 32px;
  font-size: 24px;
  font-weight: 700;
  color: var(--main-blue);
  margin-right: 16px;
}
#QUESTION .accordion-header .text {
  flex: 1;
  font-weight: bold;
}
#QUESTION .accordion-header .icon {
  position: relative;
  width: 16px;
  height: 16px;
}
#QUESTION .accordion-header .icon::before, #QUESTION .accordion-header .icon::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 100%;
  background-color: var(--bg-superdarkgray);
  left: 50%;
  top: 0;
  transform-origin: center;
  transition: transform 0.3s ease;
}
#QUESTION .accordion-header .icon::before {
  transform: rotate(90deg);
}
#QUESTION .accordion-header.is-open .icon::after {
  transform: rotate(90deg);
}
#QUESTION .accordion-content {
  height: 0;
  overflow: hidden;
  transition: height 0.5s ease;
}
#QUESTION .accordion-content p {
  margin: 0;
  padding: 20px;
  background-color: #414141;
  color: var(--text-white);
  display: flex;
  align-items: center;
  border-radius: 16px;
  margin-bottom: 40px;
}
#QUESTION .accordion-content p .a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  min-width: 32px;
  font-size: 24px;
  font-weight: 700;
  margin-right: 16px;
}