@charset "UTF-8";
.accordion-list li .accordion {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  width: 100%;
  height: 80px;
  border: none;
  text-align: left;
  outline: none;
  transition: 0.4s;
  padding: 0 40px 0 90px;
  line-height: 40px;
  border-bottom: 1px solid #3c3f4b;
  z-index: 5;
  padding: 0 16px;
  background: white;
}

.accordion-list li .accordion.disabled {
  pointer-events: none;
  opacity: 0.5;
}

.accordion-list li .accordion.disabled span.state {
  color: #3c3f4b;
}

.accordion-list li .accordion span.title {
  font-family: "NanumSquareRound", 맑은고딕, Malgun Gothic, Roboto;
  font-weight: 800;
  color: #3c3f4b;
  font-size: 16px;
}

.accordion-list li .accordion span.state {
  font-family: "NanumSquareRound", 맑은고딕, Malgun Gothic, Roboto;
  font-weight: 700;
  color: #3c3f4b;
  font-size: 16px;
  color: #3c3f4b;
  width: 132px;
  text-align: center;
  padding-right: 20px;
}

.accordion-list li .accordion::before {
  content: "";
  background-image: url(../img/ic_arrow_down.png);
  width: 13px;
  height: 8px;
  left: 40px;
  position: absolute;
  left: unset;
  right: 16px;
}

.accordion-list li .accordion.active::before {
  content: "";
  background-image: url(../img/ic_arrow_up.png);
  width: 13px;
  height: 8px;
}

.accordion > span {
  padding-left: 0;
  font-size: 13px;
  color: #262626;
}

.panel {
  background-color: #f9f9f9;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.79, 0.01, 0.23, 0.93);
  border-bottom: 1px solid #3c3f4b;
  position: relative;
  top: -1px;
}

.panel p {
  padding: 40px 16px;
  font-family: "NanumSquareRound", 맑은고딕, Malgun Gothic, Roboto;
  font-weight: 400;
  font-size: 16px;
  width: 100%;
  line-height: 26px;
  color: #3c3f4b;
}

.panel ul {
  padding: 0 16px 40px 16px;
  font-family: "NanumSquareRound", 맑은고딕, Malgun Gothic, Roboto;
  font-weight: 400;
  font-size: 16px;
  width: 100%;
  line-height: 26px;
  color: #3c3f4b;
}
