@charset "UTF-8";
/* ============================================ */
/* activity-report
/* ============================================ */
#post-list {
  width: 100%;
}
#post-list .post-title {
  position: relative;
  font-weight: 500;
  font-size: 30px;
  font-size: 1.875rem;
  line-height: 1.5;
  padding: 0 50px 0.3em 0;
  background-image: repeating-linear-gradient(90deg, #707070, #707070 5px, transparent 5px, transparent 7px);
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: 100% 1px;
  display: flex;
  flex-wrap: wrap;
}
#post-list .post-title .date {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  display: block;
  width: 140px;
  padding: 0.8em 0 0;
}
#post-list .post-title .title {
  display: block;
  width: calc(100% - 140px);
}
#post-list .text {
  padding: 50px 0;
  line-height: 2.2;
  background-image: repeating-linear-gradient(90deg, #707070, #707070 5px, transparent 5px, transparent 7px);
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: 100% 1px;
}
#post-list .text a {
  color: var(--color-university);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
#post-list .text p + p {
  margin: 3em 0 0;
}
#post-list .text img {
  margin: 50px 0;
}

@media screen and (max-width: 768px) {
  #post-list .post-title {
    font-size: 24px;
    font-size: 1.5rem;
    flex-direction: column;
    padding: 0 40px 0.3em 0;
  }
  #post-list .post-title .date {
    font-size: 14px;
    font-size: 0.875rem;
    width: 100%;
    padding: 0;
  }
  #post-list .post-title .title {
    width: 100%;
  }
  #post-list .text {
    padding: 20px 0;
  }
  #post-list .text p + p {
    margin: 2em 0 0;
  }
  #post-list .text img {
    margin: 30px 0;
  }
}
@media screen and (max-width: 600px) {
  #post-list .post-title {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
/*==== アコーディオン ====*/
.accordion dl + dl {
  margin: 40px 0 0;
}
.accordion dl.open dt .more::before {
  background-image: url("../img/plan-report/branch-archive/icon-close.svg");
}
.accordion dt {
  position: relative;
  cursor: pointer;
}
.accordion dt .more {
  position: absolute;
  top: 0;
  right: 0;
  width: 36px;
  height: 36px;
}
.accordion dt .more::before {
  content: "";
  display: inline-block;
  width: 36px;
  height: 36px;
  background-image: url("../img/plan-report/branch-archive/icon-open.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.accordion dd {
  display: none;
}

@media screen and (max-width: 768px) {
  .accordion dl + dl {
    margin: 30px 0 0;
  }
  .accordion dt .more {
    position: absolute;
    top: 10px;
    right: 0;
    width: 26px;
    height: 26px;
  }
  .accordion dt .more::before {
    width: 26px;
    height: 26px;
  }
}

/*# sourceMappingURL=activity-report.css.map */