@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@700&display=swap");
@-ms-viewport {
  width: device-width;
}

.c-table {
  table-layout: auto;
}

.c-table th {
  width: 130px;
}

@media screen and (max-width: 540px) {
  .c-table th {
    width: 70px;
  }
}

.p-accordion {
  height: 500px;
  background-color: #fff;
  position: relative;
  overflow: hidden;
}

@media screen and (max-width: 540px) {
  .p-accordion {
    height: 350px;
  }
}

.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: 0;
  z-index: 2;
}

@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);
}
