@charset "utf-8";

.page_visual {
  background: url("../img/report/page_visual.png") center no-repeat;
  background-size: cover;
}

/* 寄付金額 */
.thanks {
  background: url("../img/report/thanks_bg.png") no-repeat center;
  background-size: cover;
  height: 700px;
}
.thk_text h3 {
  font-size: 3.2rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0;
  padding-top: 80px;
  text-align: center;
}
.thk_text > p {
  padding-top: 60px;
  font-weight: 500;
  line-height: 2;
  text-align: center;
}
.contribute {
  max-width: 738px;
  margin: 15px auto 0;
  border: 1px solid #665C54;
  border-radius: 47px;
  background: #FFF;
}
.con_upper {
  background: #E2540A;
  text-align: center;
  border-radius: 53px;
  margin: 0 20px;
}
.con_upper p {
  color: #fff;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0px;
  margin-top: 18px;
  padding: 16px 0;
}
.con_lower {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.con_lower p {
  font-size: 8rem;
  font-weight: bold;
  letter-spacing: 0px;
  line-height: 0.5;
  padding: 50px 0;
}
.con_lower p .small {
  font-size: 2.4rem;
  font-weight: bold;
  margin-left: 5px;
}

/* 活動報告 */
.activity_report {
  background: #F4F3E8;
  padding: 55px 0 112px;
}
.ar_inner {
  max-width: 1024px;
  margin: 0 auto;
}
.ar_title {
  text-align: center;
  line-height: 1.3;
}
.ar_title h2 {
  font-size: 3.2rem;
  font-weight: bold;
  letter-spacing: 6.4px;
  line-height: 1.5;
}
.ar_title .ar_sub {
  font-weight: bold;
  color: #E2540A;
}
.news_box {
  background: #fff;
  margin-top: 50px;
  padding: 50px;
  border: 1px solid #665C54;
  border-radius: 25px;
}
.news_title {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #665C54;
}
.news_title .type {
  width: 120px;
  border-radius: 50px;
  color: #FFF;
  text-align: center;
  font-weight: 500;
  line-height: 2;
  background: #ccc;
}
.news_title .type.notification {
  background: #EE997F;
}
.news_title .type.donation {
  background: #EDAECC;
}
.news_title .type.recruitment {
  background: #94CAA7;
}
.news_title .type.uncategorized {
  background: #B3B3B3;
}
.news_title .title_text , .news_title .date {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.8px;
}
.news_text {
  margin-top: 56px;
}
.news_right {
  max-width: 465px;
}
.news_right p , .news_text p {
  font-weight: 500;
  line-height: 2;
}
.pagination {
  margin-top: 100px;
  display: flex;
  justify-content: center;
  gap: 15px;
}
.page-numbers {
  width: 60px;
  height: 60px;
  border-radius: 30px;
  border: 1px solid #E2540A;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: bold;
  color: #E2540A;
}
.prev , .next {
  border: none;
}
.pagination .current {
  color: #FFF;
  background: #E2540A;
}
.is-layout-flex {
    display: flex;
    gap: 20px;
}
.is-layout-flex > * {
    max-width: calc(50% - 10px);
}
@media screen and (min-width: 768px) {
/* PCの場合はtelリンクを無効 */
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}

@media screen and (max-width: 767px) {
  .thanks {
    background-position: left;
    height: 600px;
    padding-top: 70px;
  }
  .thk_text {
    background: rgba(255,255,255,.8);
    border-radius: 47px;
  }
  .thk_inner {
    width: 90%;
    margin: 0 auto;
  }
  .thk_inner h3 {
    font-size: 2.6rem;
    padding-top: 20px;
  }
  .thk_text > p {
    padding: 30px 0 20px;
  }
  .con_upper p {
    font-size: 1.6rem;
    padding: 8px 0;
  }
  .con_lower p {
    font-size: 4rem;
  }
  
  /* 活動報告 */
  .ar_inner {
    width: 90%;
    margin: 0 auto;
  }
  .news_box {
    padding: 35px 5%;
  }
  .news_title {
    flex-direction: column;
    gap: 10px;
  }
  .news_title .title_text, .news_title .date {
    font-size: 1.8rem;
  }
  .news_text {
    margin-top: 30px;
    flex-direction: column-reverse;
    gap: 30px;
  }
  .pagination {
    gap: 3px;
    margin-top: 50px;
  }
  .page-numbers {
    width: 33px;
    height: 33px;
    font-size: 1.8rem;
  }
  
  .is-layout-flex {
    flex-direction: column;
    align-items: center;
  }
  .is-layout-flex > * {
      max-width: 100%;
  }
  .activity_report {
    padding: 55px 0 50px;
  }
}

/* 印刷用設定 */
@media print {
  body {
    width:1280px;
    zoom: 0.68;
    -webkit-print-color-adjust: exact;
  }
}
@page {
  size: A4;
  margin: 5px;
}