.u-scroll-showup {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.u-scroll-showup.is-show {
  opacity: 1;
  transform: translateY(0);
}

.p-faq {
  margin-top: 26px;
  padding-left: 20px;
  padding-right: 20px;
}
@media screen and (min-width: 910px) {
  .p-faq {
    margin-top: 18px;
    margin-bottom: 68px;
  }
}
.p-faq .tab {
  display: flex;
  justify-content: space-between;
  max-width: 496px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 25px;
}
@media screen and (min-width: 910px) {
  .p-faq .tab {
    margin-bottom: 16px;
  }
}
.p-faq .tab li a {
  position: relative;
  display: block;
  font-size: 15px;
  font-weight: 500;
  line-height: 30px;
  color: #4bb2b3;
  cursor: pointer;
  transition: opacity 0.3s;
}
@media (hover: hover) {
  .p-faq .tab li a:hover {
    opacity: 0.5;
  }
}
@media (hover: none) {
  .p-faq .tab li a:active {
    opacity: 0.5;
  }
}
@media screen and (min-width: 910px) {
  .p-faq .tab li a {
    font-size: 18px;
    line-height: 40px;
  }
}
.p-faq .tab li a.is-active:after {
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  content: "";
  width: 100%;
  height: 3px;
  background-color: #4bb2b3;
}
.p-faq .contents {
  display: none;
  transition: opacity 0.3s;
}
@media screen and (min-width: 910px) {
  .p-faq .contents {
    width: 100%;
    max-width: 958px;
    margin-left: auto;
    margin-right: auto;
  }
}
.p-faq .contents.is-show {
  display: block;
  animation: fadeIn 0.3s;
}
@media screen and (min-width: 910px) {
  .p-faq .contents.is-show {
    display: flex;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.p-faq .contents.is-hide {
  opacity: 0;
}
.p-faq .contents .category {
  position: relative;
}
@media screen and (min-width: 910px) {
  .p-faq .contents .category {
    position: sticky;
    top: 68px;
    width: 250px;
    padding-top: 52px;
  }
}
@media screen and (max-width: 909px) {
  .p-faq .contents .category-label {
    position: relative;
    display: block;
    width: 100%;
    padding: 11px 14px;
    border: 1px solid #dbdbdb;
    font-size: 12px;
    line-height: 16px;
    border-radius: 5px;
    transition: border-radius 0.1s 0.5s;
    color: rgba(51, 51, 51, 0.3);
    background-color: #fff;
  }
  .p-faq .contents .category-label::after {
    position: absolute;
    top: 18px;
    right: 15px;
    display: block;
    width: 14px;
    height: 8px;
    content: url(/assets/img/faq/arrow.svg);
    font-size: 0;
    line-height: 8px;
  }
  .p-faq .contents .category-label.is-open {
    transition: border-radius 0.1s 0s;
    border-radius: 5px 5px 0 0;
  }
  .p-faq .contents .category-label.is-open::after {
    transform-origin: center 3px;
    transform: rotate(180deg);
  }
}
@media screen and (min-width: 910px) {
  .p-faq .contents .category-label {
    display: none;
  }
}
@media screen and (max-width: 909px) {
  .p-faq .contents .category-list {
    position: absolute;
    top: 39px;
    left: -15px;
    width: calc(100% + 30px);
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.1s;
    filter: drop-shadow(0 4px 5px rgba(0, 0, 0, 0.2));
    z-index: 1;
  }
  .p-faq .contents .category-list .category-container {
    padding-bottom: 15px;
  }
  .p-faq .contents .category-list ul {
    width: calc(100% - 30px);
    margin-left: auto;
    margin-right: auto;
    border: 1px solid #dbdbdb;
    background-color: #fff;
  }
  .p-faq .contents .category-list ul li a {
    padding: 11px 14px;
    font-size: 13px;
    font-weight: 500;
    line-height: 16px;
    display: block;
  }
  .p-faq .contents .category-list ul li + li {
    border-top: 1px solid #dbdbdb;
  }
}
@media screen and (min-width: 910px) {
  .p-faq .contents .category-list {
    max-height: 100% !important;
    padding-top: 30px;
  }
  .p-faq .contents .category-list ul li a {
    font-size: 13px;
    font-weight: 500;
    line-height: 16px;
    transition: opacity 0.3s;
  }
  .p-faq .contents .category-list ul li a:hover {
    opacity: 0.5;
  }
  .p-faq .contents .category-list ul li + li {
    margin-top: 16px;
  }
}
@media screen and (min-width: 910px) {
  .p-faq .contents .container {
    flex: 1;
  }
}
.p-faq .contents .container .block {
  padding-top: 52px;
}
@media screen and (max-width: 909px) {
  .p-faq .contents .container .block:first-child {
    padding-top: 30px;
  }
}
.p-faq .contents .container .block .label {
  margin-bottom: 14px;
  font-size: 16px;
  font-weight: 500;
  line-height: 19px;
}
@media screen and (min-width: 910px) {
  .p-faq .contents .container .block .label {
    margin-bottom: 20px;
    font-size: 20px;
    line-height: 24px;
  }
}