@charset "utf-8";

.c-underPageTitle {
  position: relative;
}

.c-pageTitle__sub {
  position: absolute;
  top: -14px;
  left: 0;
  font-size: 15px;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .c-pageTitle__sub {
    font-size: 13px;
  }
}

.c-underPageTitle--h2 {
  margin-top: 10px;
  cursor: pointer;
}

.c-underPageTitle--h2 span {
  position: relative;
  display: block;
}

.c-underPageTitle--h2 span::before, .c-underPageTitle--h2 span::after {
  position: absolute;
  right: 20px;
  top: 50%;
  width: 2px;
  height: 15px;
  background-color: #ccc;
  content: "";
}

.c-underPageTitle--h2 span::before {
  transform: translateY(-50%);
  transition: transform .4s linear;
}

.c-underPageTitle--h2 span::after {
  transform: translateY(-50%) rotate(90deg);
}

.c-underPageTitle--h2.is-open span::before {
  transform: translateY(-50%) rotate(270deg);
  transition: transform .4s linear;
}

@media screen and (max-width: 900px) {
  .p-infoListWrap {
    padding: 0 10px;
  }
}

.p-infoListWrap__item {
  margin-top: 8px;
  padding-bottom: 6px;
  border-bottom: 1px solid #ccc;
}

@media screen and (max-width: 900px) {
  .p-infoList {
    padding: 0;
  }
}

.p-infoList__item__heading {
  max-width: calc(100% - 214px);
}
@media screen and (max-width: 900px) {
  .p-infoList__item__heading {
    width: 100%;
    max-width: 100%;
  }
}

:not([class^=p-infoList__item__label]) + .p-infoList__item__heading {
  margin-left: 104px;
}
@media screen and (max-width: 900px) {
  :not([class^=p-infoList__item__label]) + .p-infoList__item__heading {
    margin-left: 0;
  }
}

.js-accordion + .p-infoList {
  display: none;
  margin-top: 8px;
  margin-bottom: 40px;
}