.c-table {
  table-layout: auto;
}
.c-table th {
  width: 130px;
}
@media screen and (max-width: 540px) {
  .c-table th {
    width: 70px;
  }
}

.p-accordion {
  height: 520px;
  padding: 20px 10px;
  margin-bottom: 32px;
  margin-right: auto;
  margin-left: auto;
  background-color: #fff;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 540px) {
  .p-accordion {
    height: 380px;
  }
}
.p-accordion::after {
  content: "";
  width: 100%;
  height: 200px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, white 100%);
  position: absolute;
  left: 0;
  bottom: 0;
}
.p-accordion-title {
  width: 100%;
  height: 52px;
  background-color: #fff;
  box-shadow: 0 4px 0 0 #E9ECEF;
  border: 2px solid #E9ECEF;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
@media screen and (min-width: 900px) {
  .p-accordion-title {
    width: 80%;
  }
}
@media screen and (max-width: 540px) {
  .p-accordion-title {
    height: 48px;
  }
}
.p-accordion-title span {
  color: #6f2fff;
  font-size: 1.8rem;
  font-weight: bold;
}
@media screen and (max-width: 540px) {
  .p-accordion-title span {
    font-size: 1.4rem;
  }
}
.p-accordion-title span i {
  display: inline-block;
  transform: translateY(1px) rotate(90deg);
  margin-left: 5px;
}
.p-accordion.is-active {
  height: auto;
  padding-bottom: 82px;
}
@media screen and (max-width: 540px) {
  .p-accordion.is-active {
    padding-bottom: 78px;
  }
}
.p-accordion.is-active::after {
  display: none;
}
.p-accordion.is-active .p-accordion-title span i {
  transform: translateY(1px) rotate(-90deg);
}