/* ========================================
   活動報告
======================================== */

.report-page {
  background: #f8f6ea;
}

.report-section {
  padding: 80px 0 120px;
}

.report-inner {
  width: calc(100% - 80px);
  max-width: 1100px;
  margin: 0 auto;
}

.report-title {
  margin: 0 0 70px;
  color: #19ad70;
  font-size: 34px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.08em;
}

.report-accordion {
  border-top: 1px solid #777;
}

.report-year {
  border-bottom: 1px solid #777;
}

.report-year__heading {
  margin: 0;
}

.report-year__button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 110px;
  padding: 20px 0;
  border: 0;
  background: transparent;
  color: #111;
  font-family: inherit;
  text-align: left;
  cursor: pointer;
}

.report-year__label {
  padding-left: 5px;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.report-year__icon {
  position: relative;
  display: block;
  width: 31px;
  height: 31px;
  margin-right: 3px;
  border-radius: 50%;
  background: #19b775;
}

.report-year__icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 8px;
  width: 14px;
  height: 1px;
  background: #fff;
  transform: translateY(-50%);
}

.report-year__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 8px;
  width: 8px;
  height: 8px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: translateY(-50%) rotate(45deg);
}

.report-table {
  padding-bottom: 35px;
}

.report-table__head {
  display: grid;
  grid-template-columns: 180px 1fr;
  background: #cfe4f4;
  border-top: 1px solid #8195a3;
  border-bottom: 1px solid #8195a3;
  font-size: 14px;
  font-weight: 700;
}

.report-table__category,
.report-table__detail {
  padding: 11px 18px;
}

.report-item {
  display: grid;
  grid-template-columns: 180px 1fr;
  padding: 34px 0;
  border-bottom: 1px solid #aaa69b;
}

.report-item:last-child {
  border-bottom: 0;
}

.report-item__category {
  padding: 0 18px;
  font-size: 14px;
  font-weight: 700;
}

.report-item__detail {
  padding: 0 18px;
}

.report-detail {
  margin: 0;
}

.report-detail__row {
  margin-bottom: 18px;
}

.report-detail__row:last-child {
  margin-bottom: 0;
}

.report-detail__row dt {
  position: relative;
  margin-bottom: 4px;
  padding-left: 15px;
  font-size: 13px;
  font-weight: 700;
}

.report-detail__row dt::before {
  content: "";
  position: absolute;
  top: 0.45em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #b01848;
}

.report-detail__row dd {
  margin: 0;
  padding-left: 15px;
  font-size: 14px;
  line-height: 1.7;
}

.report-empty {
  margin: 0;
  padding: 35px 10px;
  font-size: 15px;
  line-height: 1.8;
}

@media screen and (max-width: 780px) {
  .report-section {
    padding: 18vw 0 24vw;
  }

  .report-inner {
    width: calc(100% - 10vw);
  }

  .report-title {
    margin-bottom: 12vw;
    font-size: 7vw;
  }

  .report-year__button {
    min-height: 18vw;
    padding: 3vw 0;
  }

  .report-year__label {
    padding-left: 1vw;
    font-size: 5vw;
  }

  .report-year__icon {
    width: 6vw;
    height: 6vw;
  }

  .report-year__icon::before {
    left: 1.5vw;
    width: 2.7vw;
  }

  .report-year__icon::after {
    right: 1.5vw;
    width: 1.5vw;
    height: 1.5vw;
  }

  .report-table__head {
    grid-template-columns: 24vw 1fr;
    font-size: 2.8vw;
  }

  .report-table__category,
  .report-table__detail {
    padding: 2.5vw 3vw;
  }

  .report-item {
    grid-template-columns: 24vw 1fr;
    padding: 6vw 0;
  }

  .report-item__category {
    padding: 0 3vw;
    font-size: 2.8vw;
  }

  .report-item__detail {
    padding: 0 2vw 0 3vw;
  }

  .report-detail__row {
    margin-bottom: 4vw;
  }

  .report-detail__row dt {
    margin-bottom: 1vw;
    padding-left: 3vw;
    font-size: 2.7vw;
  }

  .report-detail__row dt::before {
    width: 1.5vw;
    height: 1.5vw;
  }

  .report-detail__row dd {
    padding-left: 3vw;
    font-size: 2.8vw;
    line-height: 1.65;
  }

  .report-empty {
    padding: 6vw 1vw;
    font-size: 3vw;
  }
}
/* アコーディオン開閉 */
.report-year__content {
  display: grid;
  grid-template-rows: 0fr;
  visibility: hidden;
  overflow: hidden;
  transition:
    grid-template-rows 0.4s ease,
    visibility 0.4s;
}

.report-year__content-inner {
  min-height: 0;
  overflow: hidden;
}

.report-year.is-open .report-year__content {
  grid-template-rows: 1fr;
  visibility: visible;
}

.report-year__icon {
  transition: transform 0.35s ease;
}

.report-year.is-open .report-year__icon {
  transform: rotate(90deg);
}