@charset "UTF-8";
/* ========================================
   Report Single — ページ全体ラッパー
   CSS mask-image（wave-blue.svg）+ ドットオーバーレイ
======================================== */
.report-single {
  position: relative;
  background-color: #65cddb;
  margin-bottom: -90px;
  -webkit-mask-image: url("../../../assets/wave-blue.svg"), linear-gradient(#000, #000);
  mask-image: url("../../../assets/wave-blue.svg"), linear-gradient(#000, #000);
  -webkit-mask-size: 1470px 76px, 100% calc(100% - 53px);
  mask-size: 1470px 76px, 100% calc(100% - 53px);
  -webkit-mask-position: left top, left 53px;
  mask-position: left top, left 53px;
  -webkit-mask-repeat: repeat-x, no-repeat;
  mask-repeat: repeat-x, no-repeat;
  -webkit-mask-composite: source-over;
  mask-composite: add;
}
@media (max-width: 960px) {
  .report-single {
    margin-bottom: -77px;
    -webkit-mask-size: 760px 55px, 100% calc(100% - 53px);
    mask-size: 760px 55px, 100% calc(100% - 53px);
  }
}

.report-single__dots {
  position: absolute;
  inset: 0;
  background-image: url("../../../assets/dots-pattern.png");
  background-size: 1002px 1002px;
  background-repeat: repeat;
  opacity: 0.5;
  pointer-events: none;
  z-index: 1;
}

.report-single__body {
  position: relative;
  z-index: 2;
  padding: 0 18px 90px;
}
@media (max-width: 960px) {
  .report-single__body {
    padding: 0 18px 60px;
  }
}

/* ========================================
   Hero — 縦スタック（画像→日付+タグ→タイトル）
======================================== */
.report-single-hero {
  position: relative;
  z-index: 2;
  max-width: 801px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 144px 0 40px;
}
@media (max-width: 960px) {
  .report-single-hero {
    padding: 65px 0 32px;
  }
}

.report-single-hero__image {
  width: 100%;
  max-width: 801px;
  height: 445px;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 24px;
}
.report-single-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 960px) {
  .report-single-hero__image {
    max-width: 345px;
    height: 207px;
  }
}

.report-single-hero__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 801px;
}
@media (max-width: 960px) {
  .report-single-hero__meta {
    max-width: 100%;
  }
}

.report-single-hero__date {
  font-size: 24px;
  font-weight: 700;
  color: #000;
  letter-spacing: 3.6px;
  line-height: normal;
}
@media (max-width: 960px) {
  .report-single-hero__date {
    font-size: 18px;
    letter-spacing: 2.7px;
  }
}

/* report-single-hero 固有スタイル(ここは消さずに残す) */
.report-single-hero .category-tag {
  font-size: 18px;
  line-height: 21px;
}

/* report-single-hero 固有スタイル(ここは消さずに残す) */
.report-single-hero .category-tags {
  max-width: 300px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
@media (max-width: 960px) {
  .report-single-hero .category-tags {
    max-width: 235px;
  }
}

.report-single-hero__title {
  font-size: 42px;
  font-weight: 700;
  color: #000;
  line-height: normal;
  text-align: justify;
  max-width: 801px;
}
@media (max-width: 960px) {
  .report-single-hero__title {
    font-size: 24px;
    max-width: 100%;
  }
}

/* ========================================
   Report 固有の色設定（hr, h3, highlight-box）
   News と色がスワップ: 背景=シアン, h3=赤
======================================== */
.report-single-content .entry-content hr,
.report-single-content .entry-content .divider {
  border-top-color: #65cddb;
}
.report-single-content .entry-content h3 {
  color: #ff7777;
}
.report-single-content .entry-content .highlight-box,
.report-single-content .entry-content .wp-block-group.has-background {
  background: rgba(101, 205, 219, 0.2);
}

/* ========================================
   Pagination — SP 固有スタイル
======================================== */
@media (max-width: 960px) {
  .report-single .pagination__prev,
  .report-single .pagination__next {
    width: 142px;
    line-height: 23px;
  }
}

@media (max-width: 960px) {
  .report-single .pagination__back {
    max-width: 211px;
    min-width: 211px;
  }
}