@-webkit-keyframes slideIn {
  from {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes slideIn {
  from {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.p_info__wrap {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: clamp(3rem, 9vw, 8rem);
  margin-bottom: 8rem;
}
@media screen and (max-width: 768px) {
  .p_info__wrap {
    grid-template-columns: repeat(1, 1fr);
  }
}
.p_info__wrap__sidebar__content {
  position: sticky;
  top: 100px;
  width: 100%;
  padding: 3rem 0 6rem;
  border-radius: 10px 10px 0px 0px;
  overflow: hidden;
  background: rgb(129, 136, 157);
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(129, 136, 157)), color-stop(80%, rgb(129, 136, 157)), to(rgba(129, 136, 157, 0)));
  background: linear-gradient(180deg, rgb(129, 136, 157) 0%, rgb(129, 136, 157) 80%, rgba(129, 136, 157, 0) 100%);
}
.p_info__wrap__sidebar__content__box {
  padding: 1rem;
  border-bottom: solid 2px #ffffff;
}
.p_info__wrap__sidebar__content__box:last-child {
  border-bottom: none;
}
.p_info__wrap__sidebar__content__box__ttl {
  color: #ffffff;
  font-family: "Be Vietnam Pro", sans-serif;
  font-weight: 500;
  font-size: clamp(1rem, 3vw, 1.25rem);
  text-align: center;
  margin-bottom: 0.5em;
  display: block;
  width: 100%;
}
.p_info__wrap__sidebar__content__box__nav {
  display: block;
}
@media screen and (max-width: 768px) {
  .p_info__wrap__sidebar__content {
    padding: 0;
    border-radius: 10px;
    background: rgb(129, 136, 157);
  }
  .p_info__wrap__sidebar__content__box {
    padding: 0;
    border-bottom: solid 1px #ffffff;
  }
  .p_info__wrap__sidebar__content__box__ttl {
    text-align: left;
    padding: 1rem;
    margin-bottom: 0;
    position: relative;
    cursor: pointer;
  }
  .p_info__wrap__sidebar__content__box__ttl::before {
    content: "";
    width: 10px;
    height: 10px;
    border-top: solid 2px #ffffff;
    border-right: solid 2px #ffffff;
    position: absolute;
    right: 1em;
    top: 50%;
    -webkit-transform: translate(0, -50%) rotate(135deg);
            transform: translate(0, -50%) rotate(135deg);
  }
  .p_info__wrap__sidebar__content__box__nav {
    display: none;
    padding: 0 1rem 1rem;
  }
}
.p_info__wrap__content__archive-heading {
  font-family: YakuHanJP, "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 1.125rem;
  margin-bottom: 2rem;
}
.p_info__wrap__content__list {
  margin-bottom: 2rem;
}
.p_info__wrap__content__list .no-post {
  font-size: 0.9375rem;
  line-height: 1.6;
}/*# sourceMappingURL=information.css.map */