@charset "UTF-8";
/* =========================
   教育動向レポートINDEX
========================= */
.report-list {
  padding: 20px;
  margin-top: 40px;
  background: #f7f8fb;
}

.report-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (max-width: 768px) {
  .report-cards {
    grid-template-columns: 1fr;
  }
}

.report-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}
.report-card a {
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
}
.report-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}
.report-card__image {
  aspect-ratio: 10/3;
  overflow: hidden;
}
.report-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.report-card__body {
  padding: 20px;
}
.report-card__category {
  display: inline-block;
  padding: 4px 10px;
  margin-bottom: 12px;
  border-radius: 999px;
  background: #e8eefc;
  color: #2146b7;
  font-size: 12px;
  font-weight: 700;
}
.report-card__title {
  margin-bottom: 16px;
  font-size: 17px;
  line-height: 1.6;
}
.report-card__date {
  font-size: 14px;
  color: #666;
}

.report-list__more {
  margin-top: 48px;
  text-align: center;
}

.report-page .report-list__button {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  min-width: 280px;
  padding: 16px 32px;
  border-radius: 999px;
  background: #2146b7;
  color: #fff !important;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  text-decoration: none;
  transition: background 0.3s, transform 0.3s;
}
.report-page .report-list__button span {
  display: inline-block;
  font-size: 14px;
  line-height: 1;
}
.report-page .report-list__button:link, .report-page .report-list__button:visited {
  color: #fff !important;
}
.report-page .report-list__button:hover {
  background: #16338a;
  color: #fff !important;
  transform: translateY(-2px);
}
.report-page p {
  font-size: 16px;
  line-height: 1.8;
  text-align: justify;
}

.pc-only {
  display: block;
}
@media screen and (max-width: 767px) {
  .pc-only {
    display: none;
  }
}

/* =========================
   REPORT詳細
========================= */
.report__inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}
.report__title {
  margin: 0 0 32px;
  font-size: 36px;
  line-height: 1.4;
  font-weight: 700;
}
.report__lead {
  margin: 0 0 64px;
  font-size: 18px;
  line-height: 2;
  text-align: justify;
}
.report__meta {
  margin-bottom: 30px;
  font-size: 16px;
  /*letter-spacing: .08em;  */
  line-height: 0.8;
}
.report__category {
  font-weight: 500;
  font-size: 1.1em;
  text-transform: uppercase;
}
.report__date {
  opacity: 0.8;
}
.report__category, .report__date {
  display: block;
}

.report-section {
  margin-bottom: 64px;
}
.report-section__label {
  display: flex;
  align-items: center;
  gap: 5px;
  margin: 0 0 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #336699;
}
.report-section__label::after {
  content: "";
  width: 64px;
  height: 1px;
  background: #336699;
  position: relative;
  top: -2px;
}
.report-section__heading {
  margin: 0;
  font-size: 28px;
  line-height: 1.7;
  font-weight: 700;
}
.report-section--data {
  padding: 32px;
  background: #f5f5f5;
  border-radius: 8px;
}
.report-section--note {
  max-width: 720px;
}

.report-download {
  margin-bottom: 64px;
}
.report-download__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  /*min-width: 280px;
  min-height: 64px;*/
  padding: 16px 32px;
  border-radius: 999px;
  background: #0000cd;
  color: #fff !important;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.3s;
}
.report-download__button:hover {
  opacity: 0.8;
  color: #fff !important;
}

.report-date-list {
  margin: 24px 0 0 !important;
  padding: 0 !important;
  list-style: none !important;
}
.report-date-list__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  line-height: 1.8;
}
.report-date-list__item i {
  margin-top: 4px;
  font-size: 16px;
  line-height: 1;
  color: #333;
}

.report-note__text {
  line-height: 1.8;
  font-size: 14px;
  text-align: justify;
}

.report-author__box {
  padding: 24px 0;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
.report-author__name {
  margin: 0 0 6px;
  font-size: 20px;
  font-weight: 700;
}
.report-author__position {
  margin: 0;
  line-height: 1.8;
}

/* =========================
   SP
========================= */
@media (max-width: 768px) {
  .report__inner {
    padding: 56px 20px;
  }
  .report__title {
    font-size: 32px;
  }
  .report__lead {
    font-size: 16px;
  }
  .report-section__heading {
    font-size: 22px;
  }
  .report-download__button {
    width: 100%;
  }
}/*# sourceMappingURL=corenet_report.css.map */