@charset "utf-8";


.page-wrap {
  margin-bottom: 10rem;
}
.decorative-title {
  display: inline-block;
  position: relative;
  font-weight: 700;
  font-family: "Poppins", "Noto Sans KR", sans-serif;
  letter-spacing: 1px;
}
.decorative-title:before {
  content: "";
  position: absolute;
  background-color: #c70034;
  top: 0;
  bottom: 0;
  left: -25px;
  width: 6px;
}
@media (max-width:480px) {
  .decorative-title:before {
    left: -15px;
  }
}
.contents {
  margin-top: 5rem;
  display: flex;
  flex-direction: column;
}
.contents>ul>li {
  float: left;
}
.contents li.th {
  display: flex;
  align-items: center;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: #333;
  padding: 1rem;
  border-bottom: 1px solid #e7e7e7;
  cursor: pointer;
}
.contents li.th:hover,
.contents li.th.on {
  color: #c70034;
}
.contents li.th>i {
  text-shadow: 0 0 3px rgba(110, 0, 21, 0.71);
  font-size: 2.5rem;
  margin-right: 1.5rem;
  color: #999;
  transform: rotate(90deg);
  text-shadow: 0 0 2px rgba(0, 0, 0, 0.1);
}
.contents li.th:hover>i {
  transform: rotate(180deg);
}
.contents li.th.on>i {
  color:#c70034;
  transform: rotate(180deg);
}
.contents li.th.on:hover>i {
  transform: rotate(0deg);
}
.contents li.td {
  padding: 2rem 5rem;
  width: 100%;
  display: none;
  transition: none;
  -o-transition: none;
  -ms-transition: none;
  -moz-transition: none;
  -webkit-transition: none;
}
@media (max-width:480px) {
  #PARTNERSHIP section,
  #PARTNERSHIP section>div {
    padding: 0;
  }
  #PARTNERSHIP .contents li.td {
    padding: 1rem;
  }
}
